From 0133a3ef9c621099952261a86dc709a8580d875b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 25 Aug 2024 22:48:36 +0530 Subject: [PATCH] feat(temp): sample table --- .../molecules/InterpretationLog.tsx | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 8a9ee362..16e2fc3f 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -147,6 +147,36 @@ export const InterpretationLog = () => { } label="Custom" /> + + + + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + {rows.map((row) => ( + + + {row.name} + + {row.calories} + {row.fat} + {row.carbs} + {row.protein} + + ))} + +
+
) : null }