Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active January 8, 2019 17:32
Show Gist options
  • Save ajcrites/2b4751a9aa8448b0a4b21523eb36725b to your computer and use it in GitHub Desktop.
Save ajcrites/2b4751a9aa8448b0a4b21523eb36725b to your computer and use it in GitHub Desktop.
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