import React from 'react' import SkillTreeSelect from '../SkillTreeSelect' import { skillCatalogPathLabel } from '../../utils/skillCatalogTree' import { SKILL_LEVEL_OPTIONS } from '../../constants/skillLevels' import { EXERCISE_SKILL_INTENSITY_DEFAULT, EXERCISE_SKILL_INTENSITY_OPTIONS, normalizeExerciseSkillIntensity, } from '../../constants/exerciseSkillIntensity' export default function ExerciseSkillsEditor({ rows, skillsCatalog, skillPick, onSkillPickChange, onAdd, onRemove, onUpdateField, }) { return (

Fähigkeiten

Je Übung mehrere Fähigkeiten mit Intensität und Niveau (von–bis).

s.skill_id)} placeholder="Fähigkeit wählen…" />
{rows.length === 0 ? (

Noch keine Fähigkeit zugeordnet.

) : ( )}
) } export { EXERCISE_SKILL_INTENSITY_DEFAULT }