feat: deal product services
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
export type ObjectWithNameAndId = {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type BaseFormInputProps<T> = {
|
||||
onChange: (value: T) => void;
|
||||
value: T;
|
||||
error?: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user