The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

17 lines
363 B

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