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,19 @@
import AdminNav from '~/components/AdminNav';
import React, { useEffect, useState } from 'react';
import NewQuestion from '~/components/AddQuestion'
import QuestionList from '~/components/QuestionList'
export default function AdminIndex(){
return (
<div>
<AdminNav />
<div>
<NewQuestion />
</div>
<QuestionList />
</div>
);
}