* MM-16477 Move websocket status to redux * MM-16477 Check for modified users on reconnect * Update mattermost-redux * Update mattermost-redux
18 lines
471 B
JavaScript
18 lines
471 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import connection from './connection';
|
|
import dimension from './dimension';
|
|
import isTablet from './is_tablet';
|
|
import orientation from './orientation';
|
|
import statusBarHeight from './status_bar';
|
|
|
|
export default combineReducers({
|
|
connection,
|
|
dimension,
|
|
isTablet,
|
|
orientation,
|
|
statusBarHeight,
|
|
});
|