Object render to table viewer
npm install -- save react-object-table-vieweror
yarn add react-object-table-viewerimport 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