ปรับ Layout สืบสวนข้อเท็จจริง,สอบสวนความผิดทางวินัย

This commit is contained in:
Tanyalak 2023-11-07 12:13:42 +07:00
parent 7716b459ac
commit 960f996ebc
7 changed files with 577 additions and 505 deletions

View file

@ -29,6 +29,7 @@ interface directorType {
duty: string;
email: string;
telephone: string;
role: string;
}
export type {

View file

@ -5,6 +5,7 @@ interface FormData {
position: string;
phone: string;
email: string;
role: string;
responsibilities:string
}
interface FormRef {
@ -14,6 +15,7 @@ interface FormRef {
position: object | null;
phone: object | null;
email: object | null;
role: object | null;
[key: string]: any;
}