@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
12 lines (11 loc) • 412 B
TypeScript
import React from 'react';
import type { GridProps } from './types';
/**
* __Grid__
*
* A grid contains one or more `GridColumn` to provide a grid layout.
*
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/page)
*/
declare const GridWrapper: ({ spacing: spacingProp, columns: columnsProp, layout, testId, children, theme, }: GridProps) => React.JSX.Element;
export default GridWrapper;