Skip to content

Instantly share code, notes, and snippets.

@swyxio
Created November 14, 2018 01:25
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save swyxio/5fd087c2c35398e6f5b328852f24a0bc to your computer and use it in GitHub Desktop.
Save swyxio/5fd087c2c35398e6f5b328852f24a0bc to your computer and use it in GitHub Desktop.
Timer component for use as a Suspense fallback
function Timer() {
const startTime = React.useRef(performance.now());
const [time, setTime] = React.useState(performance.now());
React.useEffect(() => {
const id = setTimeout(() => {
ReactDOM.flushSync(() => {
setTime(performance.now());
});
}, 2);
return () => clearTimeout(id);
});
return (
<div className="Fallback">
<h3>🌀 App Level Suspense</h3>
<b>{Math.round(time - startTime.current)} ms</b>
</div>
);
}
@swyxio
Copy link
Author

swyxio commented Nov 14, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment