Skip to content

Instantly share code, notes, and snippets.

@ericmasiello
Created March 6, 2020 17:42
Show Gist options
  • Select an option

  • Save ericmasiello/250bccbbbd08feeab40661aa97ca3e6f to your computer and use it in GitHub Desktop.

Select an option

Save ericmasiello/250bccbbbd08feeab40661aa97ca3e6f to your computer and use it in GitHub Desktop.
/* 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