Created
October 25, 2021 11:23
-
-
Save fhub-1/d43bc85eaf69adf5d84581ac8d92a7e5 to your computer and use it in GitHub Desktop.
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 element = { | |
type: 'ul', | |
key: null, | |
props: { | |
children: [ | |
{type: 'li', key: 'apple', props: {children: 'π apple'}}, | |
{type: 'li', key: 'orange', props: {children: 'π orange'}}, | |
{type: 'li', key: 'pear', props: {children: 'π pear'}}, | |
], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment