Skip to content

Instantly share code, notes, and snippets.

@ctrlplusb
Last active February 10, 2019 00:01
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/80c331eecd1e84bce36efc36b5c99595 to your computer and use it in GitHub Desktop.
Save ctrlplusb/80c331eecd1e84bce36efc36b5c99595 to your computer and use it in GitHub Desktop.
import { createStore } from 'easy-peasy';
import { StoreModel } from './model';
// 👇
const store = createStore<StoreModel>({
todos: {
items: ["Install easy-peasy", "Build app", "profit"]
},
notification: {
msg: ""
}
});
export default store;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment