1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-23 09:20:12 +02:00
copilot/ui/src/components/row
2016-10-25 20:15:33 +01:00
..
index.js react and a11y linting 2016-10-25 20:15:33 +01:00
readme.md base styles based on bootstrap and normalize 2016-10-25 02:15:43 +01:00
style.css ui grid system - grid, row and column 2016-10-24 21:58:09 +01:00

<Row>

demo

const React = require('react');
const ReactDOM = require('react-dom/server');
const Row = require('./index.js');
const Container = require('../container');
const Button = require('../button');

nmodule.exports = ReactDOM.renderToString(
  <Container>
    <Row center='xs' start='sm'>
      <Button>1</Button>
      <Button>2</Button>
    </Row>
  </Container>
);

usage