Files
web/components/MyPages/Blocks/Stays/EmptyPreviousStays/index.tsx
Michael Zetterberg 2f6500f46d feat: static my stays
2024-04-20 07:24:54 +02:00

13 lines
322 B
TypeScript

import Title from "@/components/MyPages/Title"
import styles from "./emptyPreviousStays.module.css"
export default function EmptyPreviousStaysBlock() {
return (
<section className={styles.container}>
<Title level="h3" as="h5" uppercase>
You have no previous stays.
</Title>
</section>
)
}