Files
AnimeTV-Frontend/features/home/sections/Hero/skeleton.tsx
Rafi Arrafif 29f2d3fa59
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
🔧 chore: replace dummy data with real data
2026-03-03 13:58:11 +07:00

9 lines
200 B
TypeScript

import { Skeleton } from "@/shared/libs/shadcn/ui/skeleton";
import React from "react";
const HeroSkeleton = () => {
return <Skeleton className="w-full h-full" />;
};
export default HeroSkeleton;