From 2590476a8753d7c361c4af3c8d47fb9bef17c273 Mon Sep 17 00:00:00 2001 From: bakaq Date: Sat, 5 Oct 2024 04:36:38 -0300 Subject: [PATCH] Nutrition prices and CRUD buttons --- frontend/src/App.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.js b/frontend/src/App.js index 0c64c52..33f26da 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -47,6 +47,7 @@ function ItemList() {

Items

+
); @@ -59,17 +60,20 @@ function ItemCard({ itemData }) {
  • Name: {itemData.name}
  • Price: R$ {itemData.price}
  • Weight: {itemData.weight}g
  • +
  • + Nutrition prices: +
  • Nutritional table:
  • - + + ); } function NutritionalTable({ nutrition }) { - console.log(nutrition); return (