diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 18:06:56 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 18:06:56 +0530 |
commit | 6874be2c3016b872016ba32181823a8e1232a1a7 (patch) | |
tree | 8e1469bfdc6b646738ff2e6ae5f0e2e1f032dd7f /src/components/Pages/BillingPage.tsx | |
parent | 35a44621c25b06471ae5b29bbdfb35fdcf652cf1 (diff) |
Ported SummaryDisplay to tsx
Diffstat (limited to 'src/components/Pages/BillingPage.tsx')
-rw-r--r-- | src/components/Pages/BillingPage.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/Pages/BillingPage.tsx b/src/components/Pages/BillingPage.tsx index ebc0f5a..9697a24 100644 --- a/src/components/Pages/BillingPage.tsx +++ b/src/components/Pages/BillingPage.tsx @@ -20,7 +20,7 @@ import DocumentInfoForm from "./../Form/Document/DocumentInfoForm"; import MetaInfoForm from "./../Form/Document/MetaInfoForm"; import ItemsDisplay from "./../Display/ItemsDisplay"; -// import SummaryDisplay from "./../Display/SummaryDisplay"; +import SummaryDisplay from "./../Display/SummaryDisplay"; const BillingPage: React.FC = () => { const [savedItems, getSavedItems] = useState<Item[]>([]); @@ -87,11 +87,10 @@ const BillingPage: React.FC = () => { <div className={"BillingPageFlex"}> <MetaInfoForm/> + <SummaryDisplay items={items}/> </div> </> ); - // this goes after metainfoform - // <SummaryDisplay items={items}/> } export default BillingPage; |