import { useState } from "react" import { useIntl } from "react-intl" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import Divider from "@/components/TempDesignSystem/Divider" import TextArea from "@/components/TempDesignSystem/Form/TextArea" import Footnote from "@/components/TempDesignSystem/Text/Footnote" import styles from "./specialRequests.module.css" export default function SpecialRequests() { const [isOpen, setIsOpen] = useState(false) const intl = useIntl() function toggleRequests() { setIsOpen((prevVal) => !prevVal) } return (
{/* TODO: Hiding because API is not ready for this yet (https://scandichotels.atlassian.net/browse/SW-1497). Add back in when API is ready. */}