11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
import SecondaryPageLayout from '@/layouts/SecondaryPageLayout'
|
|
|
|
export default function LoadingPage({ title, index }: { title?: string; index?: number }) {
|
|
return (
|
|
<SecondaryPageLayout index={index} titlebarContent={title}>
|
|
<div className="text-muted-foreground text-center">
|
|
<div>Loading...</div>
|
|
</div>
|
|
</SecondaryPageLayout>
|
|
)
|
|
}
|