json-ui-react
v1.0.10
Published
display json ui for react
Downloads
10
Maintainers
Readme
Json UI React
display json ui for react
Install
npm install --save json-ui-react
Usage
import React, { Component } from 'react'
import JsonDisplay from 'json-ui-react'
import 'json-ui-react/dist/index.css'
let data =[{
"glossary": {
"title": "example glossary",
"GlossDiv": {
"title": "S",
"GlossList": {
"GlossEntry": {
"ID": "SGML",
"SortAs": "SGML",
"GlossTerm": "Standard Generalized Markup Language",
"Acronym": "SGML",
"Abbrev": "ISO 8879:1986",
"GlossDef": {
"para": "A meta-markup language, used to create markup languages such as DocBook.",
"GlossSeeAlso": ["GML", "XML"]
},
"GlossSee": "markup"
}
}
}
}
}];
class Example extends Component {
render() {
return <JsonDisplay data={data} />
}
}
Props
License
MIT © Omrani-Mahmoud