Saving tasks in UI (#346)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { z } from "zod";
|
||||
|
||||
export const taskTemplateFormSchema = z.object({
|
||||
title: z.string().min(1, "Title can't be empty"),
|
||||
description: z.string(),
|
||||
});
|
||||
|
||||
export type TaskTemplateFormValues = z.infer<typeof taskTemplateFormSchema>;
|
||||
Reference in New Issue
Block a user