about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/columns_area.jsx
blob: 1c46f722d1fcd821ee86054a7eecdff8090af106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Column from './column';

const ColumnsArea = React.createClass({

  render: function() {
    return (
      <div style={{ display: 'flex', flexDirection: 'row', flex: '1' }}>
        <Column type='home' />
        <Column type='mentions' />
      </div>
    );
  }
});

export default ColumnsArea;