"use client" import { useIntl } from "react-intl" import Body from "@scandic-hotels/design-system/Body" import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import styles from "./retry.module.css" import type { RetryProps } from "@/types/components/hotelReservation/bookingConfirmation/rooms/linkedReservation" export default function Retry({ handleRefetch }: RetryProps) { const intl = useIntl() return (
{intl.formatMessage({ defaultMessage: "Something went wrong!", })}
) }