mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-14 01:45:07 +01:00
7 lines
229 B
JavaScript
7 lines
229 B
JavaScript
import { createStore, applyMiddleware } from 'redux';
|
|
import thunk from 'redux-thunk';
|
|
import appReducer from '../reducers';
|
|
|
|
export default function configureStore() {
|
|
return createStore(appReducer, applyMiddleware(thunk));
|
|
}
|