Skip to content

Instantly share code, notes, and snippets.

@ctrlplusb
Created February 8, 2019 00:18
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/0e85dda97fcd7581a3e0c85588558540 to your computer and use it in GitHub Desktop.
Save ctrlplusb/0e85dda97fcd7581a3e0c85588558540 to your computer and use it in GitHub Desktop.
const store = createStore<StoreModel>({
todos: {
items: ["Install easy-peasy", "Build app", "profit"],
// 👇
add: (state, payload) => {
state.items.push(payload);
}
},
notification: {
msg: "",
// 👇
set: (state, payload) => {
state.msg = payload;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment