diff --git a/src/app/(app)/playground/@problem/@submission/components/footer.tsx b/src/app/(app)/playground/@problem/@submission/components/footer.tsx new file mode 100644 index 0000000..f3fc0a7 --- /dev/null +++ b/src/app/(app)/playground/@problem/@submission/components/footer.tsx @@ -0,0 +1,24 @@ +import { cn } from "@/lib/utils"; + +interface ProblemSubmissionFooterProps { + className?: string; +} + +export default function ProblemSubmissionFooter({ + className, + ...props +}: ProblemSubmissionFooterProps) { + return ( + + ); +}