1import { createStore } from "redux"; 2import reducers from "../reducers/index"; 3 4const store = createStore(reducers); 5 6export default store; 7 8