I need a nested List View like Safari's adding bookmark list. React for of that: https://ej2.syncfusion.com/react/documentation/listview/nested-list/
My data is nested it is shown below (small part of that):
const data = [
{
title: 'Computer',
},
{
title: 'Software',
items: [
{
title: 'JS',
},
{
title: 'React JS',
items: [
{
title: 'Components',
},
{
title: 'Hooks',
},
],
},
],
},
];
Which package do you suggest ?
