@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
11 lines (10 loc) • 344 B
TypeScript
import type { GridColumnProps } from './types';
/**
* __Grid column__
*
* A grid column can span one or more column positions within a grid.
*
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/page)
*/
declare const GridColumn: ({ medium, children, testId }: GridColumnProps) => JSX.Element;
export default GridColumn;