UNPKG

@atlaskit/page

Version:

A page layout organizes sections on a page using a grid and grid columns.

19 lines (18 loc) 552 B
/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import type { PageProps } from './types'; /** * __Page__ * * Used to build page layouts. * * Has built in support for positioning [banners](https://atlassian.design/components/banner/examples) * and the deprecated `@atlaskit/navigation`. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/page) */ declare const Page: ({ isBannerOpen, bannerHeight, banner, navigation, children, testId, }: PageProps) => jsx.JSX.Element; export default Page;