diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-25 16:49:32 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-25 16:49:32 +0530 |
commit | ad67099a4b332f227705dc6842874469841b4cae (patch) | |
tree | 7115e9953814f5536824355c98b0d999462a452d /src/components/App.js | |
parent | 93dd72920e5a72c684f53071f4ab1972bf1e878c (diff) |
added functionality to calculate the price after applying the discount on each product
Diffstat (limited to 'src/components/App.js')
-rw-r--r-- | src/components/App.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/App.js b/src/components/App.js index d2b7d21..62cc15c 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -3,14 +3,14 @@ import Header from "./Header/Header"; import BillingPage from "./BillingPage"; const App = () => { - return ( - <> - <Header/> - <div className={"root-content"}> - <BillingPage /> - </div> - </> - ); + return ( + <> + <Header/> + <div className={"root-content"}> + <BillingPage /> + </div> + </> + ); } export default App; |