summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_view.jsx
blob: 9c4131292c78a894d7aa35e8c4f0ba66aa6ba8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import CenterPanel from '../components/center_panel.jsx';
import Sidebar from '../components/sidebar.jsx';
import SidebarRight from '../components/sidebar_right.jsx';
import SidebarRightMenu from '../components/sidebar_right_menu.jsx';

export default class ChannelView extends React.Component {
    render() {
        return (
            <div className='container-fluid'>
                <div
                    className='sidebar--right'
                    id='sidebar-right'
                >
                    <SidebarRight/>
                </div>
                <div
                    className='sidebar--menu'
                    id='sidebar-menu'
                >
                    <SidebarRightMenu/>
                </div>
                <div
                    className='sidebar--left'
                    id='sidebar-left'
                >
                    <Sidebar/>
                </div>
                <CenterPanel/>
            </div>
        );
    }
}
ChannelView.defaultProps = {
};

ChannelView.propTypes = {
};