Last active
February 10, 2019 00:01
-
-
Save ctrlplusb/80c331eecd1e84bce36efc36b5c99595 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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