neuron
Home / react / About
Neuron React is a React only global state management library that is a wrapper around Neuron VanillaJS. It is set up to create stores declaratively through components and uses React hooks to manage state. It also includes other features like state slices and private stores.
To use just install Neuron into your app.
npm install @sandstack/neuron
//or
yarn add @sandstack/neuron
You will import the React configuration into your app instead of the base configuration.
import { createStore } from "@sandstack/neuron/react";
const Store = createStore();
Note - Neuron React does not use React Context to manage state. The exception to this is private stores, which does use React Context under the hood.