mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
|
import { createStore } from 'redux';
|
||
|
import rootReducer from '../reducers';
|
||
|
|
||
|
export default function configureStore(initialState) {
|
||
|
return createStore(rootReducer, initialState);
|
||
|
}
|