diff --git a/ui/src/components/TimeZonePicker/index.tsx b/ui/src/components/TimeZonePicker/index.tsx new file mode 100644 index 00000000..bd0d0f5c --- /dev/null +++ b/ui/src/components/TimeZonePicker/index.tsx @@ -0,0 +1,25 @@ +import { Form } from 'react-bootstrap'; + +import { TIMEZONES } from '@/common/constants'; + +const TimeZonePicker = (props) => { + return ( + + {TIMEZONES?.map((item) => { + return ( + + {item.options.map((option) => { + return ( + + ); + })} + + ); + })} + + ); +}; + +export default TimeZonePicker;