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