Last active
April 2, 2022 12:40
-
-
Save antondevv/7dab8163c180ce306781aa18083c09b4 to your computer and use it in GitHub Desktop.
store
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 "redux"; | |
import userReducer from "./reducers/userReducer"; | |
const store = createStore(userReducer); | |
export default store; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment