@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
14 lines (13 loc) • 352 B
TypeScript
import { jsx } from '@emotion/react';
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.JSX.Element;