reactant-model
v0.150.0
Published
A model lib for Reactant
Readme
reactant-model
A model lib for Reactant
Usage
npm install reactant-model
# or
yarn add reactant-modelExample
import { model } from 'reactant-model';
const counter = model({
state: {
count: 0,
},
actions: {
increase: (num) => (state) => {
state.count += num;
},
}
});You can visit reactant.js.org for more documentation.
