Files
uni-web-site/site/testing/Testing.tsx

15 lines
286 B
TypeScript

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;