From 33a344feca3de8b25988932fd0039d14c363b5cd Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sat, 26 Jun 2021 23:45:43 +0530 Subject: ported and changed order in ItemsDisplay --- src/components/Display/ItemsDisplay.js | 53 ---------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/components/Display/ItemsDisplay.js (limited to 'src/components/Display/ItemsDisplay.js') diff --git a/src/components/Display/ItemsDisplay.js b/src/components/Display/ItemsDisplay.js deleted file mode 100644 index f0882af..0000000 --- a/src/components/Display/ItemsDisplay.js +++ /dev/null @@ -1,53 +0,0 @@ -/* - * OpenBills - Self hosted browser app to generate and keep track of simple invoices - * Version - 0 - * Licensed under the MIT license - https://opensource.org/licenses/MIT - * - * Copyright (c) 2021 Vidhu Kant Sharma -*/ - -import React from "react"; -import "./Display.scss"; -import DisplayItem from "./DisplayItem"; -// import {SummaryDisplayTR} from "./SummaryDisplay"; - -const ItemsDisplay = (props) => { - const items = props.items; - // TODO: remove mutability - let itemNumber = 0; - - // TODO: Add HSN Support - - return ( - - - - - - - - - - - - - - - - {items.map( - (item) => { - itemNumber++ - return ( - - ); - } - )} - - -
S. NumItemDescriptionQuantity(NOS)Discount(%)sgst(%)cgst(%)igst(%)HSNPrice
- ); - // this goes right before - // -} - -export default ItemsDisplay; -- cgit v1.2.3