Skip to content

Instantly share code, notes, and snippets.

@jakobvase
Created January 25, 2023 12:52
Show Gist options
  • Save jakobvase/9d7de7bf50824f3a0cf0e2bec184c84d to your computer and use it in GitHub Desktop.
Save jakobvase/9d7de7bf50824f3a0cf0e2bec184c84d to your computer and use it in GitHub Desktop.
A component to test suspense fallbacks.
import { ComponentType, lazy } from "react";
/**
* A component to test suspense fallbacks.
*
* Wrap the children of your <Suspense> in <Delay>, and watch your beautiful fallback for 5 seconds.
*
* Don't use it in production.
*/
export const Delay = lazy(
() =>
new Promise<{ default: ComponentType<any> }>((res) =>
setTimeout(() => res({ default: ({ children }) => children }), 5000)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment