ปรับวินัย

This commit is contained in:
Warunee Tamkoo 2023-11-24 16:52:10 +07:00
parent 7b56868c1f
commit 3482ec0ae4
18 changed files with 1222 additions and 70 deletions

View file

@ -0,0 +1,10 @@
interface FormData {
detail: string;
}
interface FormRef {
detail: object | null;
[key: string]: any;
}
export type { FormData, FormRef };