GridCell
@spartanfx/react / GridCell
Variable: GridCell
const
GridCell:React.FunctionComponent
<IGridCellProps
>
GridCell
is a child layout component meant to be used inside a Grid
.
It controls how many columns and/or rows a child should span in the CSS grid.
Example
<Grid cols={3}>
<GridCell colSpan={2}>
<div>This cell spans 2 columns</div>
</GridCell>
<GridCell>
<div>Normal 1-column cell</div>
</GridCell>
</Grid>