Skip to content

Commit

Permalink
fix(examples): fix wrong formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pierpo committed May 13, 2021
1 parent a6dbebf commit 4e18265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const App = () => {
<p>Choose an example:</p>
{[...Array(9).keys()].map(value => (
<button key={value} onClick={() => setExampleId(value + 1)} style={{ marginRight: 8 }}>
{`Example ${value + 1}`}
{`Example ${value + 1}`}
</button>
))}
</div>
Expand Down

0 comments on commit 4e18265

Please sign in to comment.