mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 03:25:14 +00: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));
|
|
}
|