Files
AnimeTV-Frontend/features/home/sections/Hero/wrapper.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

16 lines
297 B
TypeScript

import { Suspense } from "react";
import HeroSkeleton from "./skeleton";
import HeroMain from "./main";
const Hero = () => {
return (
<div className="h-120 w-full">
<Suspense fallback={<HeroSkeleton />}>
<HeroMain />
</Suspense>
</div>
);
};
export default Hero;