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

import CenterPanel from 'components/center_panel.jsx';

import React from 'react';

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

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