Setting up first table in frontend

This commit is contained in:
Charles Bochet
2023-04-12 11:39:46 +02:00
parent b629d48cc5
commit cb3a209380
6 changed files with 192 additions and 85 deletions

View File

@ -0,0 +1,5 @@
export interface Company {
id: number;
name: string;
logo: string;
}

View File

@ -0,0 +1,5 @@
export interface Pipe {
id: number;
name: string;
icon: string;
}