Bpistle/src/pages/secondary/LoadingPage/index.tsx
2025-01-02 21:57:14 +08:00

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>
)
}