Created
March 6, 2020 17:42
-
-
Save ericmasiello/250bccbbbd08feeab40661aa97ca3e6f 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
| /* You probably don't want to do this... */ | |
| import React from 'react'; | |
| import './Hero.css'; | |
| function Hero() { | |
| return ( | |
| <header className="hero"> | |
| <h1 className="hero__title">Eric's Website</h1> | |
| <p className="hero__tagline">Learn all about BEM</p> | |
| <button className="hero__button">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