diff options
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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; |