Skip to content

Instantly share code, notes, and snippets.

@amarbalu
Created March 12, 2022 16:31
Show Gist options
  • Save amarbalu/6cb8eb9077dd702f474318b484d40528 to your computer and use it in GitHub Desktop.
Save amarbalu/6cb8eb9077dd702f474318b484d40528 to your computer and use it in GitHub Desktop.
Fallback component until chunk gets downloaded
import React from "react";
const Loading = props => {
if (props.error) {
return <div>Error!</div>;
} else {
return <div>Loading...</div>;
}
};
export default Loading;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment