Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active January 8, 2019 17:27
Show Gist options
  • Save ajcrites/385046453dd34e08c816d30638ecf92f to your computer and use it in GitHub Desktop.
Save ajcrites/385046453dd34e08c816d30638ecf92f to your computer and use it in GitHub Desktop.
export const TimesTable = props => {
const [, forceUpdate] = useState(null);
const redraw = () => {
const canvas = canvasRef.current;
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
forceUpdate(true);
};
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment