@json-render/jotai Jotai adapter for json-render's interface. Wire a Jotai atom as the state backend for json-render. Installation Usage With a Shared Jotai Store When your app already uses a Jotai with a custom store, pass it so both json-render and your components share the same state: API Creates a backed by a Jotai atom. | Option | Type | Required | Description | |--------|------|----------|-------------| | | | Yes | A writable atom holding the state model | | | Jotai | No | The Jotai store instance. Defaults to a new store. Pass your own to share state with . | ---