diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 16:20:08 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 16:20:08 +0530 |
commit | 66b4673b4e05275643353026275360001e4a9172 (patch) | |
tree | e3de21ac4ba854fd756afa2ced0965bc2bf041c0 /src/components/BillingPage.js | |
parent | e2c31632d326f5f201172dba08b06b422abfa593 (diff) |
minor ui changes
Diffstat (limited to 'src/components/BillingPage.js')
-rw-r--r-- | src/components/BillingPage.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/BillingPage.js b/src/components/BillingPage.js index a7e4ef0..3f60f44 100644 --- a/src/components/BillingPage.js +++ b/src/components/BillingPage.js @@ -31,11 +31,14 @@ const BillingPage = () => { }; return ( - <div> + <> <AddNewItemForm savedItems={savedItems} addItem={getItems} defGSTValue={defGSTValue}/> <ItemsDisplay items={items} defGSTValue={defGSTValue}/> - <SummaryDisplay items={items}/> - </div> + <div className={"BillingPageFlex"}> + <div>placeholder for extras menu</div> + <SummaryDisplay items={items}/> + </div> + </> ); } |