Created
November 14, 2019 12:34
-
-
Save theodesp/6762b4c3334e08ba31f30323bf920422 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
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