# grid-react

```javascript
import { GridContainer, Row, Column } from 'grid-react';
import 'grid-react/dist/style.css';

const App = () => (
	<GridContainer fullwidth>
		<Row gutterless>
			<Column 
				mobileSmall='8' 
				mobileSmallOffset='2' 
				screenLarge='4' 
				screenLargeOffset='4'
			>
				/* content */
			</Column>
		</Row>
	</GridContainer>
);
```