crush-level-web/src/app/(main)/character/[id]/page.tsx

9 lines
185 B
TypeScript

export default async function Page({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params
return (
<div>
<h1>Character: {id}</h1>
</div>
)
}