mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-10-31 13:38:45 -07:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
import { createStore } from "redux";
|
||
|
import rootReducer from "./reducers/rootReducer";
|
||
|
|
||
|
const store = createStore(rootReducer);
|
||
|
|
||
|
export default store;
|