0.0.1 • Published 3 years ago

json-component-renderer v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

json-component-renderer

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)[];
}

Installation:

npm i json-component-renderer

or

yarn add json-component-renderer