You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
526 B
20 lines
526 B
import ColumnsArea from './columns_area';
|
|
import ComposerDrawerContainer from '../containers/composer_drawer_container';
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
const Frontend = React.createClass({
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
render () {
|
|
return (
|
|
<div style={{ flex: '0 0 auto', display: 'flex', width: '100%', height: '100%', background: '#1a1c23' }}>
|
|
<ComposerDrawerContainer />
|
|
<ColumnsArea />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
});
|
|
|
|
export default Frontend;
|
|
|