interface Props {
    userId: number;
}

export const UpdateUserFormDialog = ({ userId }: Props) => {

    console.log(userId)

}