Skip to content

Instantly share code, notes, and snippets.

@misselliev
Last active August 7, 2020 15:30
Show Gist options
  • Save misselliev/558cb4652fa688f32f690fa7c60dab0f to your computer and use it in GitHub Desktop.
Save misselliev/558cb4652fa688f32f690fa7c60dab0f to your computer and use it in GitHub Desktop.
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;
@misselliev
Copy link
Author

Creating a App component for an article on Dev.To

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment