All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
16 lines
297 B
TypeScript
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;
|