First frontend
This commit is contained in:
parent
c3e98af5b6
commit
ac48e03404
16 changed files with 1764 additions and 5 deletions
|
|
@ -18,6 +18,10 @@ export const createProjectSchema = z.object({
|
|||
name: z.string().min(1),
|
||||
});
|
||||
|
||||
export const createDistributionBoardSchema = z.object({
|
||||
name: z.string().min(1),
|
||||
});
|
||||
|
||||
export type CreateConsumerInput = z.infer<typeof createConsumerSchema>;
|
||||
export type CreateProjectInput = z.infer<typeof createProjectSchema>;
|
||||
|
||||
export type CreateDistributionBoardInput = z.infer<typeof createDistributionBoardSchema>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue