mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
19 lines
398 B
JavaScript
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
|
|
};
|