updated role menu

This commit is contained in:
Warunee Tamkoo 2024-02-06 11:58:23 +07:00
parent 6f861c0027
commit 429e2bde32
9 changed files with 8 additions and 7 deletions

View file

@ -0,0 +1,10 @@
interface Pagination {
rowsPerPage: number;
}
interface DataOption {
id: string;
name: string;
}
export type { Pagination, DataOption };