| 4 | import "react-loading-skeleton/dist/skeleton.css"; |
| 5 | |
| 6 | interface SkeletonPageProps { |
| 7 | customSkeleton?: (skeleton: React.FC<SkeletonProps>) => React.ReactNode; |
| 8 | } |
| 9 | |
| 10 | export const SkeletonPage = ({ customSkeleton }: SkeletonPageProps) => { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected