MCPcopy Create free account
hub / github.com/Nutlope/self.so / LoadingFallback

Function LoadingFallback

components/LoadingFallback.tsx:8–17  ·  view source on GitHub ↗
({ message })

Source from the content-addressed store, hash-verified

6}
7
8const LoadingFallback: React.FC<LoadingFallbackProps> = ({ message }) => {
9 return (
10 <div className="flex justify-center items-center h-[80vh] flex-col">
11 <CustomSpinner className="h-10 w-10 mr-2" />
12 <p className="mt-2.5 font-mono max-w-[400px] text-center text-lg">
13 {message}
14 </p>
15 </div>
16 );
17};
18
19export default LoadingFallback;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected