Browse Source

Add semi

main
dan 3 years ago
committed by GitHub
parent
commit
17dca33409
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      beta/src/content/apis/react/useCallback.md

4
beta/src/content/apis/react/useCallback.md

@ -915,7 +915,7 @@ function ReportList({ items }) {
const Report = memo(function Report({ item }) { const Report = memo(function Report({ item }) {
function handleClick() { function handleClick() {
sendReport(item) sendReport(item);
} }
return ( return (
@ -924,4 +924,4 @@ const Report = memo(function Report({ item }) {
</figure> </figure>
); );
}); });
``` ```

Loading…
Cancel
Save