@abgov/react-components
Version:
Government of Alberta - UI components for React
15 lines (14 loc) • 429 B
TypeScript
import { ReactNode, JSX } from 'react';
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-one-column-layout": React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabPageProps {
children?: ReactNode;
}
export type PageProps = GoabPageProps;
export declare function GoabOneColumnLayout(props: GoabPageProps): JSX.Element;
export default GoabOneColumnLayout;