feat: add two and three column grid variants

This commit is contained in:
Christel Westerberg
2024-05-13 15:12:06 +02:00
parent d2eb2a3077
commit 5d15e5605f
11 changed files with 138 additions and 43 deletions

View File

@@ -88,6 +88,6 @@ export const getStaysSchema = z.object({
.nullable(),
})
export type GetStaysData = z.infer<typeof getStaysSchema>
type GetStaysData = z.infer<typeof getStaysSchema>
export type Stay = GetStaysData["data"][0]
export type Stay = GetStaysData["data"][number]