blob: 98eb7dac98b770cc372d389a279a8cef80480347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {combineReducers} from 'redux';
import rhs from './rhs';
import channel from './channel';
export default combineReducers({
rhs,
channel
});
|