feat: deal product services

This commit is contained in:
2024-05-13 07:46:24 +03:00
parent 0ebb1d5e08
commit 6acb34271d
19 changed files with 401 additions and 30 deletions

View File

@@ -1,4 +1,10 @@
export type ObjectWithNameAndId = {
id: number;
name: string;
}
export type BaseFormInputProps<T> = {
onChange: (value: T) => void;
value: T;
error?: string | null;
}