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.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;