🔧 chore: replace dummy data with real data
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
This commit is contained in:
15
features/home/sections/Hero/wrapper.tsx
Normal file
15
features/home/sections/Hero/wrapper.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user