From dc6794b0cabe785720ad86fca0bccb345f0b853c Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Sat, 1 Mar 2025 19:25:50 +0800 Subject: [PATCH] feat(playground): add submission footer component --- .../@submission/components/footer.tsx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/app/(app)/playground/@problem/@submission/components/footer.tsx 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 ( + + ); +}