add: data from MongoDB

Retrieve Data from MongoDB
This commit is contained in:
Fiona Lena Urban 2025-04-07 20:53:15 +02:00
parent 628659c39d
commit ae0f6cb620
9 changed files with 210 additions and 9 deletions

12
shared/db/Product.ts Normal file
View file

@ -0,0 +1,12 @@
export type Product = {
name: string
brand: string
image: string
market: string
category: string
sku: string
price: number
pieces: number
sheets: number
layers: number
}