mattermost-mobile/service/reducers/requests/index.js
enahum aa01be831f include posts into store (#125)
* include posts into store

* addressing feedback
2016-12-13 09:07:16 -05:00

20 lines
455 B
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {combineReducers} from 'redux';
import channels from './channels';
import general from './general';
import posts from './posts';
import teams from './teams';
import users from './users';
import preferences from './preferences';
export default combineReducers({
channels,
general,
posts,
teams,
users,
preferences
});