The code powering m.abunchtell.com https://m.abunchtell.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
502 B

  1. import NavBar from './nav_bar';
  2. import ColumnsArea from './columns_area';
  3. import ComposerDrawerContainer from '../containers/composer_drawer_container';
  4. const Frontend = React.createClass({
  5. render: function() {
  6. return (
  7. <div style={{ flex: '0 0 auto', display: 'flex', width: '100%', height: '100%', background: '#1a1c23' }}>
  8. <NavBar />
  9. <ComposerDrawerContainer />
  10. <ColumnsArea />
  11. </div>
  12. );
  13. }
  14. });
  15. export default Frontend;