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 660e7f6..d8e94d3 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -1,13 +1,14 @@
import React from "react";
import Header from "./Header/Header";
-import HomeView from "./Views/Home";
+import BillingForm from "./Form/Form.js";
const App = () => {
- const currentview = "home";
return (
<>
<Header/>
- {currentview === "home" && <HomeView/>}
+ <div className={"root-content"}>
+ <BillingForm/>
+ </div>
</>
)
}