json-component-renderer is a function helper that traverse the json data, calling the customized transformations function callback. It is useful to render a DOM tree based on the json data structure.
The json data structure interface is:
interface JsonComponent {
component: string;
props?: JsonComponentProps;
children?: string | (string | JsonComponent)[];
}
npm i json-component-renderer
or
yarn add json-component-renderer
Examples: vanilla javascript react