feat: modules, products, services, services kits
This commit is contained in:
7
src/utils/baseFormInputProps.ts
Normal file
7
src/utils/baseFormInputProps.ts
Normal file
@ -0,0 +1,7 @@
|
||||
type BaseFormInputProps<T> = {
|
||||
onChange: (value: T) => void;
|
||||
value: T;
|
||||
error?: string | null;
|
||||
};
|
||||
|
||||
export default BaseFormInputProps;
|
||||
Reference in New Issue
Block a user