teecup/frontend/app/my-friends/[id]/page.tsx

7 lines
231 B
TypeScript
Raw Normal View History

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