Skip to content

Instantly share code, notes, and snippets.

@theodesp
Created November 14, 2019 12:34
Show Gist options
  • Save theodesp/6762b4c3334e08ba31f30323bf920422 to your computer and use it in GitHub Desktop.
Save theodesp/6762b4c3334e08ba31f30323bf920422 to your computer and use it in GitHub Desktop.
const HomeHeader = () => {
const intl = useIntl();
return (
<div className="Home-header">
<img src={logo} className="Home-logo" alt="logo"/>
<h2>{intl.formatMessage({id: 'home.welcome'}, {name: 'React.js'})}</h2>
</div>
)
};
class Home extends Component {
render() {
return (
<div className="Home">
<HomeHeader />
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment