Object render to table viewer
npm install -- save react-object-table-viewer
or
yarn add react-object-table-viewer
import ReactObjectTableViewer from 'react-object-table-viewer';
const App = () => {
const data = {
hello: 'world',
abc: 123,
array: ['1', '2', '3'],
};
return <>
<ReactObjectTableViewer
style={{
fontSize: '14px',
}}
data={data}/>
</>
};
MIT