Skip to content

Commit

Permalink
Fix React syntax in get started docs (#4127)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxstbr authored and hwillson committed Jan 2, 2019
1 parent 409d151 commit 496b156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/essentials/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const ExchangeRates = () => (

return data.rates.map(({ currency, rate }) => (
<div key={currency}>
<p>{`${currency}: ${rate}`}</p>
<p>{currency}: {rate}</p>
</div>
));
}}
Expand Down

0 comments on commit 496b156

Please sign in to comment.