Created
January 25, 2023 12:52
-
-
Save jakobvase/9d7de7bf50824f3a0cf0e2bec184c84d to your computer and use it in GitHub Desktop.
A component to test suspense fallbacks.
This file contains 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
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