aboutsummaryrefslogtreecommitdiff
path: root/src/components/BillingPage.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-26 19:46:35 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-26 19:46:35 +0530
commit7dbbfc0c2eac7000bf208ce068e887b4db14ea5f (patch)
treef82316aa52a597362c388b73a2974f48991f6cdb /src/components/BillingPage.js
parent66b4673b4e05275643353026275360001e4a9172 (diff)
Minor styling + fixed the calculation of discount and taxes and added new calculations
Diffstat (limited to 'src/components/BillingPage.js')
-rw-r--r--src/components/BillingPage.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/BillingPage.js b/src/components/BillingPage.js
index 3f60f44..1f42bf0 100644
--- a/src/components/BillingPage.js
+++ b/src/components/BillingPage.js
@@ -4,6 +4,7 @@ import axios from "axios";
import AddNewItemForm from "./Form/AddNewItemForm";
import ItemsDisplay from "./Display/ItemsDisplay";
import SummaryDisplay from "./Display/SummaryDisplay";
+import MetaInfoForm from "./Form/MetaInfoForm";
const BillingPage = () => {
const [savedItems, getSavedItems] = useState([])
@@ -35,7 +36,7 @@ const BillingPage = () => {
<AddNewItemForm savedItems={savedItems} addItem={getItems} defGSTValue={defGSTValue}/>
<ItemsDisplay items={items} defGSTValue={defGSTValue}/>
<div className={"BillingPageFlex"}>
- <div>placeholder for extras menu</div>
+ <MetaInfoForm/>
<SummaryDisplay items={items}/>
</div>
</>