import { useIntl } from "react-intl" import Input from "@/components/TempDesignSystem/Form/Input" import Select from "@/components/TempDesignSystem/Form/Select" import Body from "@/components/TempDesignSystem/Text/Body" import Caption from "@/components/TempDesignSystem/Text/Caption" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import styles from "./deliveryDetailsStep.module.css" import type { DeliveryMethodStepProps } from "@/types/components/myPages/myStay/ancillaries" export default function DeliveryMethodStep({ deliveryTimeOptions, }: DeliveryMethodStepProps) { const intl = useIntl() return (
{intl.formatMessage({ id: "Delivered at:" })} {intl.formatMessage({ id: "Optional", })}
) }