Files
web/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/Cancelled/index.tsx
Anton Gunnarsson 8518d018f8 Merged in feat/sw-3230-move-link-to-design-system (pull request #2618)
feat(SW-3230): Move Link to design-system

* Move Link to design-system

* Remove comments


Approved-by: Linus Flood
2025-08-12 12:35:20 +00:00

22 lines
481 B
TypeScript

"use client"
import { useIntl } from "react-intl"
import Link from "@scandic-hotels/design-system/Link"
import CustomerSupport from "./CustomerSupport"
import styles from "./cancelled.module.css"
export default function Cancelled() {
const intl = useIntl()
return (
<>
{/* (S) TODO - Link to where?? */}
<Link className={styles.link} href="#">
{intl.formatMessage({ defaultMessage: "Rebook" })}
</Link>
<CustomerSupport />
</>
)
}