aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
commitaef52169e3f0f9bde0e5f2dd21cbb316eaa34136 (patch)
tree0dde319375996da517814493defef1273400ad40 /src/components/App.js
parent10f7749d52df9a70e15a33cd76ba441f4b81a1a5 (diff)
laid out some very basic components, the tile component still needs to be worked upon
Diffstat (limited to 'src/components/App.js')
-rw-r--r--src/components/App.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/App.js b/src/components/App.js
index 2808a4b..4f71c90 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -1,9 +1,14 @@
import React from "react";
import Header from "./Header/Header";
+import HomeView from "./Views/Home/Home";
const App = () => {
+ const currentview = "home";
return (
- <Header />
+ <>
+ <Header/>
+ {currentview === "home" && <HomeView/>}
+ </>
)
}