feat: add placeholder data

This commit is contained in:
Fredrik Thorsson
2024-07-05 14:20:51 +02:00
parent c21fa39fe5
commit 2f1f81530a
4 changed files with 80 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
export interface HotelCardData {
hotel: {
name: string
address: string
description: string
rooms: string
button: string
label: string[]
}
}