UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

23 lines (22 loc) 650 B
import { ReactNode } from 'react'; interface WCProps { navcolumnwidth?: string; maxcontentwidth?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-two-column-layout": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabTwoColumnLayoutProps { navColumnWidth?: string; maxContentWidth?: string; header: ReactNode; footer: ReactNode; nav: ReactNode; children: ReactNode; } export declare function GoabTwoColumnLayout(props: GoabTwoColumnLayoutProps): import("react/jsx-runtime").JSX.Element; export default GoabTwoColumnLayout;