UI หน้ารายการคำสั่งและ Template

This commit is contained in:
STW_TTTY\stwtt 2024-09-06 16:42:40 +07:00
parent 3b9df73811
commit 3556fb3cae
4 changed files with 684 additions and 5 deletions

View file

@ -2,4 +2,20 @@ interface Pagination {
rowsPerPage: number;
}
export type { Pagination };
interface ActiveOptions {
value: string;
label: string;
}
interface ListOrder {
id: string;
code: string;
name: string;
status: boolean;
}
interface Tabs {
value: string;
label: string;
}
export type { Pagination, ActiveOptions, ListOrder, Tabs };