เพิ่ม validateForm

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-08 13:44:03 +07:00
parent 8453e20234
commit 782fa7f59f
2 changed files with 118 additions and 44 deletions

View file

@ -2,4 +2,9 @@ interface DataOption {
id: string;
name: string;
}
export type { DataOption };
interface FormRef {
date: object | null;
reason: object | null;
[key: string]: any;
}
export type { DataOption, FormRef };