jsonx
    Preparing search index...

    Function jsonToJSX

    • converts JSONX JSON IR to JSX

      Parameters

      • json: JSONReactElement

        {type,props,children}

      Returns string

      jsx string

      jsonx.jsonToJSX({ type: 'div', props: { key: 5, title: 'test' }, children: 'hello' }) // => '<div key={5} title="test">hello</div>'