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 ModuleList from '~/components/ModuleList';
import NewModule from '~/components/NewModule';
export default function AdminIndex(){
return (
<div>
<AdminNav />
<NewModule />
<div>
<ModuleList />
</div>
</div>
);
}