Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import type React from 'react';
- import { type RegisterDto } from '~/config/form/auth/register-dto';
- export type RegisterFormStepProps = {
- onGoToNextStep: (data: Partial<RegisterDto>) => void,
- onGoToPreviousStep: React.MouseEventHandler<HTMLButtonElement>,
- isLoading?: boolean,
- data: RegisterDto,
- };
Add Comment
Please, Sign In to add comment