Skip to content

Instantly share code, notes, and snippets.

View fhub-1's full-sized avatar
πŸ’­
I may be slow to respond.

fhub-1

πŸ’­
I may be slow to respond.
View GitHub Profile
const element = {
type: 'ul',
key: null,
props: {
children: [
{type: 'li', key: 'apple', props: {children: '🍊 apple'}},
{type: 'li', key: 'pear', props: {children: '🍐 pear'}},
],
},
}
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'}},
],
},
- {type: 'li', key: null, props: {children: '🍎 apple'}},
- {type: 'li', key: null, props: {children: '🍊 orange'}},
+ {type: 'li', key: null, props: {children: '🍊 apple'}},
const element = {
type: 'ul',
key: null,
props: {
children: [
{type: 'li', key: null, props: {children: '🍊 apple'}},
{type: 'li', key: null, props: {children: '🍐 pear'}},
],
},
}
- {type: 'li', key: null, props: {children: 'πŸ‡ grape'}},