aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/App.js b/src/App.js
index 386e165..5954efa 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,9 +1,11 @@
import React from 'react';
+import Header from "./components/Header";
-const App = () => {
- return (
+const App = () => (
+ <div>
+ <Header/>
<h1> ChronoCube - a professional speedcubing timer</h1>
- );
-};
+ </div>
+);
export default App;