Keep the public gallery hero/masonry geometry stable across route and client loading, and show busy state while photos download. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import GallerySkeleton from '@/components/gallery/GallerySkeleton';
|
|
|
|
// Shown while the server component fetches the event gallery.
|
|
export default function Loading() {
|
|
return <GallerySkeleton />;
|
|
}
|