Skip to content

Instantly share code, notes, and snippets.

@ericmasiello
Last active March 6, 2020 17:44
Show Gist options
  • Select an option

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

Select an option

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