Files
web/apps/scandic-web/components/HotelReservation/MyStay/Modal/ModalContent/Footer/index.tsx
Erik Tiekstra 8e08af718c feat(BOOK-743): Replaced deprecated Button component
Approved-by: Bianca Widstam
2026-01-21 09:38:38 +00:00

8 lines
221 B
TypeScript

import styles from "./footer.module.css"
import type { PropsWithChildren } from "react"
export default function Footer({ children }: PropsWithChildren) {
return <footer className={styles.footer}>{children}</footer>
}