reactant-model
v0.122.0
Published
A model lib for Reactant
Downloads
54
Readme
reactant-model
A model lib for Reactant
Usage
npm install reactant-model
# or
yarn add reactant-model
Example
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.