Files
Compass/web/pages/loading.tsx
2025-10-16 13:41:03 +02:00

11 lines
279 B
TypeScript

"use client";
import {CompassLoadingIndicator} from "web/components/widgets/loading-indicator";
import {LovePage} from "web/components/love-page";
export default function Loading() {
return <LovePage trackPageView={'loading'}>
<CompassLoadingIndicator/>
</LovePage>;
}