Created
April 28, 2021 15:22
-
-
Save m-yahya/14e1fa3152d3f3ddebd1ba679d8505a8 to your computer and use it in GitHub Desktop.
Tutorial: Nested UI from JSON data and Tree view
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = { | |
Parent: { | |
img: "father.png", | |
name: "Jan Doe", | |
age: "50", | |
children: [ | |
{ | |
child: { | |
img: "child_1.png", | |
name: "child 1", | |
age: "25", | |
}, | |
}, | |
], | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment