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