Created
March 26, 2020 02:43
-
-
Save mattbajorek/0bb5899f5cf11f6764ff044bfe27c9c1 to your computer and use it in GitHub Desktop.
todos-redux-to-react-sweet-state todos store
This file contains 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 'react-sweet-state' | |
import actions from './todos.actions' | |
const initialState = [] | |
const todosStore = createStore({ initialState, actions }) | |
export default todosStore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment