import { Skeleton } from "@/components/ui/skeleton"; import { TestcaseTable } from "@/features/problems/testcase/table"; import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; interface TestcaseContentProps { problemId: string; } export const TestcaseContent = ({ problemId }: TestcaseContentProps) => { return ( ); }; export const TestcaseContentSkeleton = () => { return (
{/* Title skeleton */} {/* Content skeletons */} {/* Example section heading */} {/* Example content */} {/* Code block skeleton */}
{/* More content */}
); };