aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 19:37:21 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 19:37:21 +0530
commit10f7749d52df9a70e15a33cd76ba441f4b81a1a5 (patch)
tree153cf3f39f9573c23744333a5d6cc678ba514b61 /src/components/App.js
parentb34cdba24fe2c2b445adcb3cf7c3e65e79ff6fd0 (diff)
rendered a simple non-functional menu/navbar
Diffstat (limited to 'src/components/App.js')
-rw-r--r--src/components/App.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/App.js b/src/components/App.js
index 666667b..2808a4b 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -1,10 +1,10 @@
import React from "react";
+import Header from "./Header/Header";
const App = () => {
- const txt = "sldjflksjdfljsd";
return (
- <p>{txt}</p>
+ <Header />
)
}
-export default App
+export default App;