import { z } from 'zod'; export const commentSchema = z.object({ body: z.string().min(1), }); export type CommentInput = z.infer;