Last active
January 8, 2019 17:32
-
-
Save ajcrites/2b4751a9aa8448b0a4b21523eb36725b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export const TimesTable = props => { | |
... | |
useEffect(() => { | |
redraw(); | |
window.addEventListener('resize', redraw); | |
return () => window.removeEventListener('resize', redraw); | |
}, []); | |
... | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment