aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2019-12-31 02:39:09 +0300
committerEug-VS <eug-vs@keemail.me>2019-12-31 15:39:10 +0300
commit6feb332973393b48369e12516808ad5294c9a843 (patch)
treea8593815e77da790a65c8648c79dcbee8f2e9d99 /src/App.js
parent81588411d7baf36a78a147142d4fb4101b0b021c (diff)
downloadchrono-cube-ui-6feb332973393b48369e12516808ad5294c9a843.tar.gz
Add initial Header component
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;