feat: add CRUD api and slug page
This commit is contained in:
3
app/module/[id]/page.tsx
Normal file
3
app/module/[id]/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function SpecificModule({ params }: { params: { id: string } }) {
|
||||
return <div>Module {params.id}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user