mirror of
https://litchi.icu/ngc2207/judge4c-latest.git
synced 2025-07-13 11:34:35 +00:00
13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
export default async function AnswerPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ slug: string }>;
|
|
}) {
|
|
const slug = (await params).slug;
|
|
return (
|
|
<div>
|
|
<h1>Answer Page: {slug}</h1>
|
|
</div>
|
|
);
|
|
}
|