math-quiz / app /page.tsx
ghost613's picture
Upload 20 files
a4ec883 verified
raw
history blame contribute delete
185 Bytes
import MathQuizApp from "@/components/MathQuizApp";
export default function Home() {
return (
<main className="min-h-screen bg-gray-100">
<MathQuizApp />
</main>
);
}