Store
What is store?
Creating a store
import reim from 'reim'
const todoStore = reim({
todos: []
})
export default todoStoreCreating a named store
const todoStore = reim({
todos: []
}, {
name: 'Todo-Store'
})Adding plugins
Last updated