7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
|
|
import { FriendProfile } from "@/components/friend-profile"
|
||
|
|
|
||
|
|
export default async function FriendProfilePage({ params }: { params: Promise<{ id: string }> }) {
|
||
|
|
const { id } = await params
|
||
|
|
return <FriendProfile userId={id} />
|
||
|
|
}
|