...
This commit is contained in:
8
src/app/users/[username]/page.ts
Normal file
8
src/app/users/[username]/page.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
interface UserPageProps {
|
||||
params: Promise<{ username: string}>;
|
||||
}
|
||||
|
||||
export default async function UserPage({params}: UserPageProps) {
|
||||
const {username} = await params;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user