mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
|
|
import * as z from "zod"
|
||
|
|
|
||
|
|
export const userAuthSchema = z.object({
|
||
|
|
email: z.string().email(),
|
||
|
|
})
|