React
CSS Grid with rows, columns, auto flow, and GridItem placement.

colSpan 2
1
2
responsive area
import { Grid } from "@hozorica/hods-react";import { Grid } from "@hozorica/hods-react-native";number | stringColumn count or CSS template on web; number on RN.number | stringWeb-only row template.stringWeb-only CSS Grid auto placement.number | fullSupported on both platforms.number | fullWeb-only placement controls. RN accepts them as no-op compatibility props.CSS Grid with rows, columns, auto flow, and GridItem placement.
Simple flex-wrap column grid. Only columns and colSpan affect layout.
<Grid columns={3} gap="x2"><GridItem colSpan={2}>Wide</GridItem></Grid>