9 lines
185 B
TypeScript
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>
|
||
|
|
)
|
||
|
|
}
|