mattermost-mobile/app/reducers/views/index.js

24 lines
589 B
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {combineReducers} from 'redux';
import channel from './channel';
import fetchCache from './fetch_cache';
import i18n from './i18n';
import login from './login';
import notification from './notification';
import optionsModal from './options_modal';
import selectServer from './select_server';
import thread from './thread';
export default combineReducers({
channel,
fetchCache,
i18n,
login,
notification,
optionsModal,
selectServer,
thread
});