This commit is contained in:
2026-07-29 11:42:41 +08:00
commit 48b7391365
71 changed files with 28910 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { SkillBuilder } from "@/components/skill-builder";
export default async function EditSkillPage(
props: PageProps<"/skills/[id]">,
) {
const { id } = await props.params;
return <SkillBuilder skillId={id} />;
}