// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. const CenterPanel = require('../components/center_panel.jsx'); const Sidebar = require('../components/sidebar.jsx'); const SidebarRight = require('../components/sidebar_right.jsx'); const SidebarRightMenu = require('../components/sidebar_right_menu.jsx'); export default class ChannelView extends React.Component { constructor(props) { super(props); } render() { return (
); } } ChannelView.defaultProps = { }; ChannelView.propTypes = { };