feat: 添加单个代码片段展示页面

This commit is contained in:
ngc2207 2024-11-12 15:05:39 +08:00
parent 24fdbcdf16
commit 58a12e7042

View File

@ -0,0 +1,8 @@
export default async function SnippetShowPage({
params,
}: {
params: Promise<{ id: string }>;
}) {
const id = (await params).id;
return <div>Show a snippet: {id}</div>;
}