UNPKG

@itwin/itwinui-layouts-react

Version:

iTwinUI package that provides React components for most common layouts

37 lines (36 loc) 1.05 kB
import React from 'react'; import { StylingProps } from '../../utils/props'; export declare type PageLayoutProps = { /** * Children of the element */ children: React.ReactNode; } & StylingProps; export declare const PageLayout: { (props: PageLayoutProps): JSX.Element; Header: { (props: import("./Header").HeaderProps): JSX.Element; displayName: string; }; SideNavigation: { (props: import("./SideNavigation").SideNavigationProps): JSX.Element; displayName: string; }; Content: { (props: import("./Content").ContentProps): JSX.Element; displayName: string; }; ToolsArea: { (props: import("./ToolsArea").ToolsAreaProps): JSX.Element; displayName: string; }; TitleArea: { (props: import("./TitleArea").TitleAreaProps): JSX.Element; displayName: string; }; BottomBar: { (props: import("./BottomBar").BottomBarProps): JSX.Element; displayName: string; }; }; export default PageLayout;