Skip to main content
BusinessPhoneDialog component

Props

open
boolean
required
open
onOpenChange
(open: boolean) => void
required
onOpenChange
currentPhone
string | null
required
currentPhone
onSuccess
(newPhone: string | null) => void
onSuccess

Usage

import { BusinessPhoneDialog } from '@/components/BusinessPhoneDialog';

export default function Example() {
  return (
    <BusinessPhoneDialog open={open} onOpenChange={onOpenChange} currentPhone={currentPhone} />
  );
}