JSON to React
Parse JSON To React
const schema = {
component: 'h1',
props:{
className:'heading'
},
text: 'Hello World'
}const schema = {
component: 'h1',
props:{
className:'heading'
},
chidren: [
{
component: 'p',
props:{
className: 'paragraph'
},
text:'Paragraph in haeding'
}
]
}JSON for React Components
Last updated