@atlaskit/page-layout
Version:
A collection of components which let you compose an application's page layout.
15 lines (14 loc) • 626 B
TypeScript
import { jsx } from '@emotion/react';
import type { PageLayoutProps } from '../../common/types';
/**
* __Page layout__
*
* A collection of components which let you compose an application's page layout.
*
* - [Examples](https://atlassian.design/components/page-layout/examples)
* - [Code](https://atlassian.design/components/page-layout/code)
*
* @deprecated `@atlaskit/page-layout` is deprecated. Use `@atlaskit/navigation-system` instead.
*/
declare const PageLayout: ({ skipLinksLabel, children, testId, onLeftSidebarExpand, onLeftSidebarCollapse, }: PageLayoutProps) => jsx.JSX.Element;
export default PageLayout;