interface ChangePhoneProps {
    cancelChangePhoneNumberButton: string;
    handleSubmitPhoneNumberChange: ((data) => void);
    inputLabel: string;
    inputPlaceholder: string;
    invalidPhoneNumberError: string;
    onCancelUpdate: (() => void);
    screenMode: "desktop" | "mobile";
    sectionTitle: string;
    submitChangePhoneNumberButton: string;
    userPhoneNumber: string;
}

Properties

cancelChangePhoneNumberButton: string
handleSubmitPhoneNumberChange: ((data) => void)

Type declaration

inputLabel: string
inputPlaceholder: string
invalidPhoneNumberError: string
onCancelUpdate: (() => void)

Type declaration

    • (): void
    • Returns void

screenMode: "desktop" | "mobile"
sectionTitle: string
submitChangePhoneNumberButton: string
userPhoneNumber: string

Generated using TypeDoc