@jaak/primitives
Version:
JAAK UI primitives
11 lines (9 loc) • 510 B
Markdown
Example:
```
<Grid gridAutoRows='minmax(100px, auto)' gridGap='16px' gridTemplateColumns='repeat(3, 1fr)'>
<GridCell column={'1 / span 3'} row={1} style={{ backgroundColor: 'peachpuff' }}>Header</GridCell>
<GridCell column={1} row={2} style={{ backgroundColor: 'peachpuff' }}>Aside</GridCell>
<GridCell column={'2 / span 2'} row={2} style={{ backgroundColor: 'peachpuff' }}>Main</GridCell>
<GridCell column={'1 / span 3'} row={3} style={{ backgroundColor: 'peachpuff' }}>Footer</GridCell>
</Grid>
```