1.1.1 • Published 4 years ago
json-view-react v1.1.1
json-view-react
React JSON View Component
usage
const json = {
a: 1,
b: 2,
c: [
d: 3,
e: {
f: 4,
g: '5'
}
]
};
<JSONView json={json} />
<JSONView json={json} toolbox={false} />
<JSONView json={json} className="my-json-view" />
<JSONView json={json} style={{ backgroundColor: '#fefefe' }} />