Created
September 26, 2020 12:35
-
-
Save janhesters/ea313c54e5023ec7a90bf378439e8f7b to your computer and use it in GitHub Desktop.
Home page component.
This file contains 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
import React from 'react'; | |
const HomePage = ({ count, onIncrementClick = () => {} }) => ( | |
<main> | |
<p className="count" data-testid="count"> | |
{count} | |
</p> | |
<button className="increment-button" onClick={onIncrementClick}> | |
Increment | |
</button> | |
</main> | |
); | |
export default HomePage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment