mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8 lines
229 B
JavaScript
8 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));
|
|
}
|