import React, { useState } from "react"; import AddNewItemForm from "./Form/AddNewItemForm"; import ItemsDisplay from "./Display/ItemsDisplay"; import SummaryDisplay from "./Display/SummaryDisplay"; const sampleData = [ { "Model": "Kisan Chair", "Description": "Very good chair", "Price": 10000, "HSN": 9403 }, { "Model": "Supreme Chair", "Description": "Even better chair", "Price": "2134983", "HSN": 9403 }, { "Model": "Action Houseware", "Description": "Not a chair", "Price": 69, "HSN": 69 }, { "Model": "Coirfit Mattress", "Description": "Not a chair (neither houseware)", "Price": 19, "HSN": 420 }, { "Model": "AVRO Chair", "Description": "Formerly AVON lol", "Price": 291, "HSN": 9403 }, { "Model": "Mystery Item", "Description": "hehe heheheheheh", "Price": 1212312, "HSN": 42069 } ]; const BillingPage = () => { // to be handled by backend const defGSTValue = 18; const [items, setItems] = useState([]); const getItems = (item) => { setItems( [...items, item] ); }; return (
); } export default BillingPage;