Skip to content

Instantly share code, notes, and snippets.

@shanebdavis
Last active January 2, 2020 22:12
Show Gist options
  • Save shanebdavis/bc88fe192570a0f87e7852e6dd5a01de to your computer and use it in GitHub Desktop.
Save shanebdavis/bc88fe192570a0f87e7852e6dd5a01de to your computer and use it in GitHub Desktop.
modular-redux-tutorial list-state-stub
export const useList = () => [
{ id: 1, text: "clean the house" },
{ id: 2, text: "buy milk" }
];
export const addItem = item => null
export const deleteITem = item => null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment