generated from dwd/boilarplate-remix-tailwind-antd
s1
This commit is contained in:
17
app/routes/admin.new-module.tsx
Normal file
17
app/routes/admin.new-module.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user