aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/App.js')
-rw-r--r--src/components/App.js7
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>
</>
);