UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

19 lines (18 loc) 523 B
import { Margins } from '@abgov/ui-components-common'; import { ReactNode, JSX } from 'react'; interface WCProps extends Margins { current?: number; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-pages": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabPagesProps extends Margins { current?: number; children?: ReactNode; } export declare function GoabPages(props: GoabPagesProps): JSX.Element; export default GoabPages;