Can any one provide with a plunker or any hint on how to use http://angular-ui-tree.github.io/angular-ui-tree/#/basic-example
with a json object like this
var list = [
{
"id": 1,
"title": "Parent",
"items": [
{
"id": 11,
"title": "child of Parent",
"items": [{
"id": 12,
"title": "inner child of Parent",
"items": [],
}],
},
]
}
]