- Add error.tsx and loading.tsx boundaries for admin, parent, student, teacher routes - Add admin announcements edit, audit-logs overview, curriculum-map, invitation-codes, permissions, questions, roles routes - Add admin elective detail and components, files, course-plans, users, scheduling boundaries - Add messages group-compose route - Add parent course-plans, elective, grades report-card, practice routes - Add student course-plans, elective detail, error-book dialogs, grades report-card, learning study-path, leave, schedule boundaries - Add teacher attendance report, classes boundaries, course-plans boundaries, elective, exams analytics/edit-rich/all/create/new, grades report-card, homework boundaries, leave, lesson-plans calendar - Add auth loading, onboarding loading, api cron
23 lines
641 B
TypeScript
23 lines
641 B
TypeScript
import { Skeleton } from "@/shared/components/ui/skeleton"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div
|
|
role="status"
|
|
aria-busy="true"
|
|
aria-label="加载中"
|
|
className="flex h-[calc(100vh-4rem-3rem)] flex-col overflow-hidden"
|
|
>
|
|
<div className="flex items-center justify-between border-b py-3 px-6 shrink-0">
|
|
<div className="flex items-center gap-3">
|
|
<Skeleton className="h-6 w-48" />
|
|
<Skeleton className="h-5 w-16 rounded-full" />
|
|
</div>
|
|
</div>
|
|
<div className="flex-1">
|
|
<Skeleton className="h-full w-full" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|