import { useIntl } from "react-intl" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import { useAddAncillaryStore } from "@/stores/my-stay/add-ancillary-flow" export default function ViewAllAncillaries() { const intl = useIntl() const openModal = useAddAncillaryStore((state) => state.openModal) return ( ) }