Skip to content

Instantly share code, notes, and snippets.

@jrwebdev
Last active July 17, 2020 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jrwebdev/8d0f6bcdd3737851a0f7b97c78098d7d to your computer and use it in GitHub Desktop.
Save jrwebdev/8d0f6bcdd3737851a0f7b97c78098d7d to your computer and use it in GitHub Desktop.
const withLoading = <P extends object>(
Component: React.ComponentType<P>
): React.FC<P & WithLoadingProps> => ({
loading,
...props
}: WithLoadingProps) =>
loading ? <LoadingSpinner /> : <Component {...props as P} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment