30 lines
726 B
JavaScript
30 lines
726 B
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import channel from './channel';
|
|
import connection from './connection';
|
|
import fetchCache from './fetch_cache';
|
|
import i18n from './i18n';
|
|
import login from './login';
|
|
import notification from './notification';
|
|
import optionsModal from './options_modal';
|
|
import root from './root';
|
|
import selectServer from './select_server';
|
|
import team from './team';
|
|
import thread from './thread';
|
|
|
|
export default combineReducers({
|
|
connection,
|
|
channel,
|
|
fetchCache,
|
|
i18n,
|
|
login,
|
|
notification,
|
|
optionsModal,
|
|
root,
|
|
selectServer,
|
|
team,
|
|
thread
|
|
});
|