@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
13 lines (12 loc) • 310 B
TypeScript
import type { GridProps } from './types';
/**
* __Grid__
*
* A container for one or more `GridColumn`.
*
* This is the internal component, which relies on the context provided by the
* grid wrapper.
*
* @internal
*/
export declare const Grid: ({ layout, testId, children }: GridProps) => JSX.Element;