Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 704 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 704 Bytes

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

Examples: vanilla javascript react