1.0.4 • Published 8 years ago

json-to-react v1.0.4

Weekly downloads
6
License
MIT
Repository
-
Last release
8 years ago

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

npm.io

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}
/>
1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago