json-to-react
v1.0.4
Published
json to react render
Downloads
4
Readme
Json to React - React component to display a json object
Json to React was development to display json using react. The advantage over JSON.stringify is the component can be styled using custom styling
Getting Started
npm install json-to-react
Usage
import JsonToReact from 'json-to-react'
<JsonToReact
json={json}
/>
Customize Styles
import JsonToReact from 'json-to-react'
const jsonStyles = {
value: {
color: 'rgb(0,255,0)'
},
key: {
color: 'rgb(255,255,255)'
},
item: {
},
child: {
margin: '0px 16px'
},
parent: {
}
}
<JsonToReact
json={json}
jsonStyle={jsonStyles}
/>