deleteItem(nutriment)}
+ />
+ );
+
+ return (
+
+
+ {row.label}
+
+
+ {row.property}
+
+
+ );
+}
diff --git a/src/pages/nutrition/unitSelect.jsx b/src/pages/nutrition/unitSelect.jsx
new file mode 100644
index 000000000..12ee67e42
--- /dev/null
+++ b/src/pages/nutrition/unitSelect.jsx
@@ -0,0 +1,29 @@
+import * as React from "react";
+import InputLabel from "@mui/material/InputLabel";
+import MenuItem from "@mui/material/MenuItem";
+import FormControl from "@mui/material/FormControl";
+import Select, { SelectChangeEvent } from "@mui/material/Select";
+
+export default function SelectUnit({ options, value, onchangeHandler }) {
+ return (
+
+
+ {options && (
+
+ )}
+
+
+ );
+}