1.0.0 • Published 5 years ago

@growcss/xy-grid v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

GrowCss XY-Grid

Installation

npm install @growcss/xy-grid

or if you're using yarn

yarn add @growcss/xy-grid

Usage

To implement XY-Grid component into your project you'll need to add the import:

import { Cell, GridX, GridContainer } from '@growcss/xy-grid';

After adding import into your project you can use it simply like:

<GridContainer>
  <GridX>
    <Cell small={4}>cell</Cell>
    <Cell small={4}>cell</Cell>
    <Cell small={4}>cell</Cell>
  </GridX>
</GridContainer>