summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_view.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/channel_view.jsx')
-rw-r--r--webapp/components/channel_view.jsx20
1 files changed, 20 insertions, 0 deletions
diff --git a/webapp/components/channel_view.jsx b/webapp/components/channel_view.jsx
new file mode 100644
index 000000000..34e1666d0
--- /dev/null
+++ b/webapp/components/channel_view.jsx
@@ -0,0 +1,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
+};