Last active
March 6, 2020 17:44
-
-
Save ericmasiello/e17b09b3b30deea5336387e7ce3fedad 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 Button from './Button'; | |
| import './Hero.css'; | |
| function Hero() { | |
| return ( | |
| <header className="hero"> | |
| <h1 className="hero__title">Eric's Website</h1> | |
| <p>Learn all about BEM</p> | |
| <Button className="hero__cta">Learn more about BEM</Button> | |
| </header> | |
| ); | |
| } | |
| export default Hero; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment