Skip to main content
TimezoneDialog component

Props

open
boolean
required
open
onOpenChange
(open: boolean) => void
required
onOpenChange
currentTimezone
string
required
currentTimezone
onSuccess
(newTimezone: string) => void
onSuccess

Usage

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

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