16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import { _ } from "@/lib/translation"
|
|
|
|
import Title from "@/components/TempDesignSystem/Text/Title"
|
|
|
|
import styles from "./emptyPreviousStays.module.css"
|
|
|
|
export default function EmptyPreviousStaysBlock() {
|
|
return (
|
|
<section className={styles.container}>
|
|
<Title as="h5" level="h3">
|
|
{_("You have no previous stays.")}
|
|
</Title>
|
|
</section>
|
|
)
|
|
}
|