Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 909 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 909 Bytes

Bendy

npm version

A grid system built for React apps inspired by React Flexbox Grid and Flexbox Grid Sass.

Bendy uses the same docs as React Flexbox Grid.

Installation

This package assumes you're using Webpack, Babel, and CSS Modules.

npm i -D bendy

Example

import {Grid, Row, Col} from 'bendy';

const App = () => (
  <Grid>
    <Row>
      <Col xs={6} md={3}>Hello, world!</Col>
    </Row>
  </Grid>
);

License

MIT