// app/profile/[id]/page.tsx
export default async function Page({params}:{
params:Promise<{id:string}>
}) {
const id = (await params).id;
return (
<div>
<h1>Profile Page</h1>
<p>User ID: {id}</p>
</div>
);
}
I am creating a chat application
And the user collection is Stored in mongodb
But here in the route it is not coming sd the user id it is showing undefined
#1019763807465246801