Skip to content

Instantly share code, notes, and snippets.

@ctrlplusb
Created February 8, 2019 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrlplusb/0fa7241c9d467a07c5df64f188b92541 to your computer and use it in GitHub Desktop.
Save ctrlplusb/0fa7241c9d467a07c5df64f188b92541 to your computer and use it in GitHub Desktop.
const store = createStore<StoreModel>({
todos: {
// ...
add: (state, payload) => {
return {
...state,
items: [
...state.items,
payload
]
};
}
},
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment