diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-14 20:29:54 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-14 20:29:54 +0530 |
commit | ee824f566add80998e2530f7bec54ff4d7a1471d (patch) | |
tree | 4b7d1da5908baf8e5e0ef6b67ecdca3f09296a86 /src/components/App.js | |
parent | 4c92b12bcb886507d5db738a27bd08e7654f8bfa (diff) |
Played around with forms
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 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> </> ) } |