mirror of
https://litchi.icu/ngc2207/judge4c-demo.git
synced 2025-05-18 22:56:34 +00:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
|
export default async function SnippetShowPage({
|
||
|
params,
|
||
|
}: {
|
||
|
params: Promise<{ id: string }>;
|
||
|
}) {
|
||
|
const id = (await params).id;
|
||
|
return <div>Show a snippet: {id}</div>;
|
||
|
}
|