Files
NextEdu/src/app/(dashboard)/admin/audit-logs/login-logs/loading.tsx
SpecialX 21142f9b99 feat(app): add error/loading boundaries across all dashboard routes and new routes
- 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
2026-07-03 10:26:25 +08:00

17 lines
629 B
TypeScript

import { AuditLogTableSkeleton } from "@/modules/audit/components/audit-log-table-skeleton"
export default function LoginLogsLoading() {
return (
<div className="flex h-full flex-col space-y-8 p-8" aria-hidden="true" role="presentation">
<div className="flex items-start justify-between gap-4">
<div className="space-y-2">
<div className="h-8 w-48 animate-pulse rounded bg-muted" />
<div className="h-4 w-64 animate-pulse rounded bg-muted" />
</div>
<div className="h-9 w-32 animate-pulse rounded bg-muted" />
</div>
<AuditLogTableSkeleton />
</div>
)
}