// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import {combineReducers} from 'redux'; import channel from './channel'; import clientUpgrade from './client_upgrade'; import fetchCache from './fetch_cache'; import i18n from './i18n'; import login from './login'; import root from './root'; import search from './search'; import selectServer from './select_server'; import team from './team'; import thread from './thread'; export default combineReducers({ channel, clientUpgrade, fetchCache, i18n, login, root, search, selectServer, team, thread });