Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layout-grid/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export type GridProps = {
/** Grid container behavior beyond max width. Fluid will continue to expand. Fixed will limit grid container to max width and center the container horizontally within parent element. */
behavior?: Behavior;
/** Children should be Cells. */
children: React.ReactElement | React.ReactElement[];
children: React.ReactNode;
/** Gap on either side of grid container at each breakpoint. */
gridMargins?: Responsive<number>;
/** Maximum width of the grid container. Does not include Margins. Only applies when `behavior` is `fluid`. */
Expand Down