react-json-dom
v0.0.3
Published
A simple component which takes in an object and shows it in json format
Downloads
13
Readme
##json-tree
A simple component which you can use to show what json looks like.
import JsonTree from 'react-json-dom';
let testObj = {
arg1: 'val1',
arg2: {
arg21: {
arg211: 'val211'
},
arg22: 'val22'
},
arg3: 3
}
<JsonTree jsonObject={testObj} />