From bb331d9c61a0e38cbbfc891204819557327e1ca0 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 18 Apr 2021 10:04:28 +0530 Subject: Added HSN support --- src/components/BillingPage.js~ | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/components/BillingPage.js~ (limited to 'src/components/BillingPage.js~') diff --git a/src/components/BillingPage.js~ b/src/components/BillingPage.js~ deleted file mode 100644 index 6f5b18b..0000000 --- a/src/components/BillingPage.js~ +++ /dev/null @@ -1,39 +0,0 @@ -import React from "react"; -import AddNewItemForm from "./Form/AddNewItemForm.js"; - - -const sampleData = [ - { - "Model": "Kisan Chair", - "Description": "Very good chair", - "Price": 10000, - "Discount": 0 - }, { - "Model": "Supreme Chair", - "Description": "Even better chair", - "Price": "2134983", - "Discount": 0 - }, { - "Model": "Action Houseware", - "Description": "Not a chair", - "Price": 69, - "Discount": 0 - } -]; - -let addedItems = []; -const getAddedItems = (item) => { - console.log(item); - addedItems.push(item); - console.log(addedItems); -} - -const BillingPage = () => { - return ( - <> - - - ); -} - -export default BillingPage; -- cgit v1.2.3