mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2026-02-07 23:58:57 -08: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;
|