Files
mattermost/web/react/components/channel_view.jsx
2016-03-14 00:38:25 -04:00

19 lines
398 B
JavaScript

// 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
};