ui ประวัติการศึกษา

This commit is contained in:
Kittapath 2023-03-16 00:35:08 +07:00
parent 792f30d606
commit 0157bf51b9
46 changed files with 1500 additions and 1642 deletions

View file

@ -1,31 +1,30 @@
interface DataProps {
row: RequestItemsObject;
rowIndex: number;
row: RequestItemsObject
rowIndex: number
}
//ข้อมูล
interface RequestItemsObject {
id: string;
level: string;
levelId: string;
name: string;
start: number;
end: number;
education: string;
major: string;
id: string
qualificationId: string
qualification: string
major: string
scores: number | null
name: string
duration: any
}
//columns
interface Columns {
[index: number]: {
name: String;
align: String;
label: String;
sortable: Boolean;
field: String;
headerStyle: String;
style: String;
};
name: String
align: String
label: String
sortable: Boolean
field: String
headerStyle: String
style: String
}
}
export type { RequestItemsObject, Columns, DataProps };
export type { RequestItemsObject, Columns, DataProps }