01
Overview
BentoCell controls row and column placement for one tile inside a BentoGrid.
Usage
02
When to use
Use when
- A tile in BentoGrid needs to span multiple tracks or start at a specific track.
Avoid when
- Every tile can use default auto-placement inside BentoGrid. Use Bento grid instead
03
Props
| Name | Type | Default | Required | Bindable | Description |
|---|---|---|---|---|---|
columnSpan | number | string | Number of columns this cell spans. | |||
rowSpan | number | string | Number of rows this cell spans. | |||
columnStart | number | string | Explicit grid-column-start value. | |||
columnEnd | number | string | Explicit grid-column-end value. | |||
rowStart | number | string | Explicit grid-row-start value. | |||
rowEnd | number | string | Explicit grid-row-end value. | |||
as | NonVoidHTMLElementTagName | 'div' | Rendered HTML tag. | ||
children | snippet | req | Bento cell contents. |