UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

9 lines (8 loc) 222 B
type ContinueTo = (next: string) => void; type OnMount = (next: ContinueTo) => void; type SimpleForm = { onMount: OnMount; continueTo: ContinueTo; }; export declare function useSimpleForm(): SimpleForm; export {};