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.
 
 
 
 

16 lines
305 B

  1. import Column from './column';
  2. const ColumnsArea = React.createClass({
  3. render: function() {
  4. return (
  5. <div style={{ display: 'flex', flexDirection: 'row', flex: '1' }}>
  6. <Column type='home' />
  7. <Column type='mentions' />
  8. </div>
  9. );
  10. }
  11. });
  12. export default ColumnsArea;