mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
"use client";
|
|
|
|
import {CompassLoadingIndicator} from "web/components/widgets/loading-indicator";
|
|
import {PageBase} from "web/components/page-base";
|
|
|
|
export default function Loading() {
|
|
return <PageBase trackPageView={'loading'}>
|
|
<CompassLoadingIndicator/>
|
|
</PageBase>;
|
|
}
|