ok banget

This commit is contained in:
zadit
2024-10-30 03:32:48 +07:00
parent 1ecc6db645
commit 5a2b9b2f86
18 changed files with 244 additions and 130 deletions

View File

@@ -141,7 +141,7 @@ const styles = {
},
};
const MaterialMutationPage = ({ cafeId }) => {
const MaterialMutationPage = ({ cafeId, handleClose }) => {
const [materials, setMaterials] = useState([]);
const [mutations, setMutations] = useState([]);
const [selectedMaterialId, setSelectedMaterialId] = useState("");
@@ -331,6 +331,8 @@ const MaterialMutationPage = ({ cafeId }) => {
</div>
))}
</div>
<div class="ItemLister_PaymentOption__YZlDL"><div style={{marginTop:'20px'}} onClick={handleClose} class="ItemLister_Pay2Button__+MIxX">Kembali</div></div>
</div>
);
};