Added toggle view for table or blob in Products page

This commit is contained in:
Keannu Christian Bernasol 2023-03-03 12:05:29 +08:00
parent 160ac39b18
commit 971d184697
4 changed files with 97 additions and 39 deletions

View file

@ -0,0 +1,9 @@
export interface ProductList {
Products: Product[];
}
export interface Product {
id: number;
name: string;
last_modified: string;
}