import React, { type FC } from 'react' import { useTimeOptions } from '../hooks' import type { TimeOptionsProps } from '../types' import OptionListItem from '../common/option-list-item' const Options: FC = ({ selectedTime, handleSelectHour, handleSelectMinute, handleSelectPeriod, }) => { const { hourOptions, minuteOptions, periodOptions } = useTimeOptions() return (
{/* Hour */} {/* Minute */} {/* Period */}
) } export default React.memo(Options)