feat: add loading skeleton components for improved user experience during data fetching

This commit is contained in:
2025-05-19 08:41:09 +02:00
parent 60925ee6ac
commit b14acab08f
6 changed files with 88 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import LoadingSkeleton from './LoadingSkeleton';
export default function Loading() {
// You can add any UI inside Loading, including a Skeleton.
return <LoadingSkeleton />
}