feat: refactor of my stay
This commit is contained in:
committed by
Simon.Emanuelsson
parent
b5deb84b33
commit
ec087a3d15
@@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import Link from "@/components/TempDesignSystem/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 />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user