import { useState } from 'react' import { ContentHeader } from 'lib/ui/layout/ContentHeader.js' import { TimeZonePicker } from 'lib/ui/TimeZonePicker/TimeZonePicker.js' interface AccessCodeFormTimeZonePickerProps { value: string onChange: (timeZone: string) => void onClose: () => void } export function AccessCodeFormTimeZonePicker({ onChange, value, onClose, }: AccessCodeFormTimeZonePickerProps): JSX.Element { const [title, setTitle] = useState(t.titleAuto) return (