Installation
npm install react-json-to-table
Usage
https://codesandbox.io/s/jn3z0mmw2v
``
import { JsonToTable } from "react-json-to-table";
function App() {
// ===================== //
// JSON Object
// ===================== //
const myJson = {
"Student": { name: "Jack", email: "jack@xyz.com" },
"Student id": 888,
"Sponsors": [
{ name: "john", email: "john@@xyz.com" },
{ name: "jane", email: "jane@@xyz.com" }
]
};
return (
{/ ===================== /}
{/ HOW TO USE IT /}
{/ ===================== /}
{/ ===================== /}
);
}const rootElement = document.getElementById("root");
ReactDOM.render(, rootElement);
``