Skip to content

Instantly share code, notes, and snippets.

@antondevv
Last active April 2, 2022 12:40
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 antondevv/7dab8163c180ce306781aa18083c09b4 to your computer and use it in GitHub Desktop.
Save antondevv/7dab8163c180ce306781aa18083c09b4 to your computer and use it in GitHub Desktop.
store
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