UNPKG

magen

Version:

Magen, generate react apps with module architecture

10 lines (7 loc) 257 B
import { z } from "zod"; export const {{lowerFirstLetterSectionName}}Schema = z.object({ name: z.string({ required_error: "El nombre es requerido", }), }); export type {{sectionName}}Type = z.infer<typeof {{lowerFirstLetterSectionName}}Schema>;