Skip to content

Commit d508d0a

Browse files
authored
Create loading.tsx
1 parent 59bc182 commit d508d0a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

app/quizzes/surah/87/loading.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Skeleton } from "@/components/ui/skeleton";
2+
export default function Loading() {
3+
return (
4+
<div className="min-h-screen bg-gray-50 dark:bg-gray-900 p-4">
5+
<div className="container mx-auto max-w-4xl">
6+
<Skeleton className="h-12 w-48 mb-6" />
7+
<Skeleton className="h-[500px] w-full rounded-lg" />
8+
</div>
9+
</div>
10+
);
11+
}

0 commit comments

Comments
 (0)