MCPcopy
hub / github.com/loggerhead/json4u / Loading

Function Loading

src/components/Loading.tsx:10–18  ·  view source on GitHub ↗
({ className }: LoadingProps)

Source from the content-addressed store, hash-verified

8 className?: string;
9}
10export default function Loading({ className }: LoadingProps) {
11 const t = useTranslations();
12 return (
13 <div className={cn("h-screen flex items-center justify-center", className)}>
14 <LoaderCircle className="animate-spin icon mr-2" />
15 {`${t("Loading")}...`}
16 </div>
17 );
18}

Callers

nothing calls this directly

Calls 2

cnFunction · 0.90
tFunction · 0.50

Tested by

no test coverage detected