ui วินัย > ข้อมูลพื้นฐาน > รายชื่อกรรมการ

This commit is contained in:
Warunee Tamkoo 2023-10-18 17:39:08 +07:00
parent 7c0284a87a
commit 7db2ff2260
9 changed files with 535 additions and 65 deletions

View file

@ -0,0 +1,24 @@
interface FormData {
prefix: string;
firstname: string;
lastname: string;
position: string;
phone: string;
responsibilities: string;
email: string;
}
interface FormRef {
prefix: object | null;
firstname: object | null;
lastname: object | null;
position: object | null;
phone: object | null;
responsibilities: object | null;
email: object | null;
[key: string]: any;
}
export type {
FormData,
FormRef
};

View file

@ -0,0 +1,12 @@
interface DirectorRows {
no: number;
name: string;
position: string;
responsibilities: string;
email: string;
phone: string;
}
export type {
DirectorRows
};