migrated to nextjs 13 app dir
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
'use client';
|
||||
|
||||
export default function Page({ params }: { params: { id: string } }) {
|
||||
return <div className="scrollbar-hide flex h-full flex-col gap-2 overflow-y-auto py-3">{params.id}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user