Guest User

Untitled

a guest
Nov 17th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import type React from 'react';
  2. import { type RegisterDto } from '~/config/form/auth/register-dto';
  3.  
  4. export type RegisterFormStepProps = {
  5.     onGoToNextStep: (data: Partial<RegisterDto>) => void,
  6.     onGoToPreviousStep: React.MouseEventHandler<HTMLButtonElement>,
  7.     isLoading?: boolean,
  8.     data: RegisterDto,
  9. };
Add Comment
Please, Sign In to add comment