The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

16 satır
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;