I have a JSON object.
[
{
"label": "Lauren Boyle",
"name": "Lauren Boyle",
"expanded": true,
"items": [
{
"label": "Banoth Srikanth",
"name": "Banoth Srikanth",
"expanded": true,
"items": [
{
"label": "Stella Pavlova",
"name": "Stella Pavlova",
"expanded": true,
"items": []
}
]
},
{
"label": "Srikanth",
"name": "Srikanth",
"expanded": true,
"items": []
}
]
}
]
I need to display this as a tree without using lightning-tree. How can I display this tree? I have tried multiple ways, but I am getting nowhere.