Add manage dashboards page

This commit is contained in:
Manuel
2023-07-30 22:20:20 +02:00
parent 93c10da760
commit f61d0f5f8d
7 changed files with 266 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
import { z } from 'zod';
export const createDashboardSchemaValidation = z.object({
name: z.string().min(2).max(25),
});