A grid where rows can have different numbers of columns.
// Create a grid where first two rows have 2 columns,// third row has 5 columns and last as 2 columnsconst grid = { rows: [ 2, 2, 5, 2 ]} Copy
// Create a grid where first two rows have 2 columns,// third row has 5 columns and last as 2 columnsconst grid = { rows: [ 2, 2, 5, 2 ]}
Consider using Grid if all rows will have the same number of columns.
A grid where rows can have different numbers of columns.
Consider using Grid if all rows will have the same number of columns.