Files
egovframe-msa-edu/frontend/portal/src/components/UserInfo/index.tsx
2021-10-21 09:03:17 +09:00

17 lines
345 B
TypeScript

import { Control, FormState } from 'react-hook-form'
export * from './UserInfoDone'
export * from './UserInfoModified'
export interface UserInfoProps {
control: Control<any>
formState: FormState<any>
handleList: () => void
}
export interface IUserForm {
currentPassword?: string
password: string
email: string
userName: string
}