12 lines
304 B
TypeScript
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>
|
|
);
|
|
}
|