Skip to content

Commit

Permalink
docs: useAsyncFn typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wardoost committed Apr 9, 2019
1 parent 914fccf commit 5bd194f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/useAsyncFn.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Demo = (url) => {
const response = await fetch(url);
const result = await response.text();
return result
}), [url];
}, [url]);

return (
<div>
Expand Down

0 comments on commit 5bd194f

Please sign in to comment.