mirror of
https://github.com/wassname/talk.git
synced 2026-08-02 13:10:23 +08:00
19 lines
308 B
JavaScript
19 lines
308 B
JavaScript
/* @flow */
|
|
|
|
import {combineReducers} from 'redux';
|
|
import config from './config';
|
|
import items from './items';
|
|
import notification from './notification';
|
|
import auth from './auth';
|
|
|
|
/**
|
|
* Expose the combined main reducer
|
|
*/
|
|
|
|
export default combineReducers({
|
|
config,
|
|
items,
|
|
notification,
|
|
auth,
|
|
});
|