Files
maestro/ui/src/components/userfolder/SkillsPanel.tsx
T
oss-sync 29ccaf1e92
CI / build-and-test (push) Has been cancelled
sync: update from private repo (dfadcd5f)
2026-06-23 06:38:48 +00:00

12 lines
304 B
TypeScript

import { SkillsForm } from '../settings/SkillsForm';
export function SkillsPanel({ spaceId }: { spaceId?: string } = {}) {
return (
<div className="h-full overflow-y-auto">
<div className="max-w-4xl mx-auto px-6 py-8">
<SkillsForm spaceId={spaceId} />
</div>
</div>
);
}