PlacementDetail page.(Layout)

This commit is contained in:
setthawutttty 2023-06-06 14:32:36 +07:00
parent 9be531bd01
commit 99714c555e
5 changed files with 699 additions and 3 deletions

View file

@ -0,0 +1,10 @@
interface DataNumObject {
id: number;
count: number;
name: string;
color: string;
}
export type {
DataNumObject,
};