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

7 lines
143 B
JavaScript
Raw Normal View History

2022-05-03 20:50:57 +02:00
import { createStore } from 'redux'
import reducers from './reducers'
2021-08-10 01:27:45 +02:00
2022-05-03 20:50:57 +02:00
export default function configure () {
return createStore(reducers)
2021-08-10 01:27:45 +02:00
}