UNPKG

simred

Version:

A simple redux-like application state manager

16 lines (13 loc) 244 B
import { withInitialState } from 'simred' const INITIAL_STATE = { newTodo: '', } export const TodoCreatorReducer = withInitialState(INITIAL_STATE)( { setNewTodo: () => (newTodo) => { return { newTodo } } } )