Improving statuses, adding a composer drawer, which doesn't work yet
This commit is contained in:
parent
f5e1127894
commit
44e57f64dd
14 changed files with 138 additions and 12 deletions
|
@ -1,6 +1,7 @@
|
|||
import { createStore } from 'redux';
|
||||
import { createStore, applyMiddleware } from 'redux';
|
||||
import thunk from 'redux-thunk';
|
||||
import appReducer from '../reducers';
|
||||
|
||||
export default function configureStore(initialState) {
|
||||
return createStore(appReducer, initialState);
|
||||
export default function configureStore() {
|
||||
return createStore(appReducer, applyMiddleware(thunk));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue