summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_view.jsx
blob: 76744d6d7d18479f8b079374f7892b85d3da46c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import CenterPanel from '../components/center_panel.jsx';

export default class ChannelView extends React.Component {
    render() {
        return (
            <CenterPanel/>
        );
    }
}
ChannelView.defaultProps = {
};

ChannelView.propTypes = {
    params: React.PropTypes.object
};