/** * @file app/(app)/loading.tsx * @description Loading skeleton fallback component rendered during async route transitions within the main application group. */ /** * Renders a full-page animated skeleton UI matching the app layout structure to provide visual feedback during page loads. * * @returns {JSX.Element} The rendered loading skeleton component. */ export default function AppLoading() { return (
{/* Top Header / Title Skeleton */}
{/* Main Content Area Skeletons */}
{/* List / Table Skeleton */}
{[...Array(4)].map((_, i) => (
))}
); }