This commit is contained in:
Suvodip
2024-07-31 20:06:47 +05:30
parent 9c7a9882ed
commit f11d95adcd
12 changed files with 697 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import AdminNav from '~/components/AdminNav';
import React, { useEffect, useState } from 'react';
import QuizList from '~/components/QuizList';
import NewQuiz from '~/components/NewQuiz';
export default function AdminIndex(){
return (
<div>
<AdminNav />
<NewQuiz />
<div>
<QuizList />
</div>
</div>
);
}