Files
mostlymatter/webapp/components/channel_view.jsx
2016-03-16 18:02:55 -04:00

21 строка
423 B
JavaScript

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