copied tesing folder to the main site

This commit is contained in:
2026-04-24 12:30:45 +10:00
parent c37b24ec38
commit 2df7ed36de
7 changed files with 356 additions and 0 deletions

15
site/testing/Testing.tsx Normal file
View File

@@ -0,0 +1,15 @@
import NavBar from "../components/Navbar";
import Footer from "../components/CustomFooter";
import Quiz from "./features/Quiz";
function Testing() {
return (
<>
<NavBar active="4" />
<Quiz />
<Footer />
</>
);
}
export default Testing;