feat: breakfast choice

This commit is contained in:
Simon Emanuelsson
2024-10-04 13:22:21 +02:00
parent fdccd89829
commit 372ec171f5
16 changed files with 223 additions and 20 deletions

View File

@@ -0,0 +1,7 @@
import { z } from "zod"
import { breakfastEnum } from "@/types/enums/breakfast"
export const breakfastSchema = z.object({
breakfast: z.nativeEnum(breakfastEnum),
})