webpack-bootstrap-ui-kit/src/js/store/configure.js

7 lines
145 B
JavaScript
Raw Normal View History

2021-08-18 20:51:15 +02:00
import { createStore } from "redux";
import reducers from "./reducers";
2021-08-10 01:27:45 +02:00
export default function configure() {
2021-08-18 20:51:15 +02:00
return createStore(reducers);
2021-08-10 01:27:45 +02:00
}