The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

16 wiersze
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;