Grid
@spartanfx/react / Grid
Variable: Grid
constGrid:React.FunctionComponent<IGridProps>
Grid is a simple React layout component that renders its children inside
a CSS grid container. It supports automatic or custom column templates and configurable spacing.
Example
<Grid cols={3} columnGap={30} rowGap={20}>
<div>Item 1</div>
<div>Item 2</div>
<div>Item 3</div>
</Grid>