Files
AnimeTV-Frontend/features/home/index.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

12 lines
177 B
TypeScript

import Hero from "./sections/Hero/wrapper";
const HomeIndex = () => {
return (
<div className="w-full pt-4">
<Hero />
</div>
);
};
export default HomeIndex;