diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-15 15:44:20 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-15 15:44:20 +0530 |
commit | 4f67c1cca24ac93f5e8b7a9108c028e6c2794d74 (patch) | |
tree | 3c6192a547a62ef7ddf3196dfc90142a96d833b0 /src/components/App.js | |
parent | d43f26a0fa7736f66636b1e40464d7d5b53954ae (diff) |
created new Home Page
Diffstat (limited to 'src/components/App.js')
-rw-r--r-- | src/components/App.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/App.js b/src/components/App.js index ceed8bd..4e6157a 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -8,14 +8,15 @@ import React from "react"; import Header from "./Header/Header"; -import BillingPage from "./BillingPage"; +import HomePage from "./Pages/HomePage"; const App = () => { + const showHeader = false; return ( <> - <Header/> + {showHeader && <Header/>} <div className={"root-content"}> - <BillingPage /> + <HomePage /> </div> </> ); |