UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

12 lines 521 B
import React from 'react'; import type { HeaderProps } from './components'; export interface PageProps extends HeaderProps { /** The contents of the page */ children?: React.ReactNode; /** Remove the normal max-width on the page */ fullWidth?: boolean; /** Decreases the maximum layout width. Intended for single-column layouts */ narrowWidth?: boolean; } export declare function Page({ children, fullWidth, narrowWidth, ...rest }: PageProps): React.JSX.Element; //# sourceMappingURL=Page.d.ts.map