Last active
August 7, 2020 15:30
-
-
Save misselliev/558cb4652fa688f32f690fa7c60dab0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import './App.css'; | |
| import Menubar from './components/Menubar'; | |
| import Banner from './components/Banner'; | |
| const App: React.FC = () => { | |
| return ( | |
| <div className="App"> | |
| <Menubar /> | |
| <Banner BannerImg="https://i.imgur.com/dMVpKDa.jpg" AltImg="The 1975 iliwys banner" /> | |
| </div> | |
| ); | |
| } | |
| export default App; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Creating a App component for an article on Dev.To