@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
18 lines (17 loc) • 405 B
TypeScript
import { type GridSpacing } from './constants';
type GridContextProps = {
isRoot: boolean;
isNested: boolean;
spacing: GridSpacing;
columns: number;
};
/**
* __Grid context__
*
* Provides contextual information which is used by both
* the `Grid` and its `GridColumn` children.
*
* @internal
*/
export declare const GridContext: import('react').Context<GridContextProps>;
export {};