mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-07-31 10:19:38 -04:00
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
'use client'
|
|
|
|
import {HomeLoadingAnimation} from 'web/components/home/home-loading-animation'
|
|
import {PageBase} from 'web/components/page-base'
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<PageBase trackPageView={'loading'} className={'col-span-10 lg:!mt-0 xl:!px-0'}>
|
|
<HomeLoadingAnimation />
|
|
</PageBase>
|
|
)
|
|
}
|