Files
web/components/MyPages/Blocks/Stays/Previous/EmptyPreviousStays/index.tsx
2024-04-26 16:06:41 +02:00

16 lines
374 B
TypeScript

import { _ } from "@/lib/translation"
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>
)
}