import { TextArea } from '@/components/Input'; import PickSubstitutions from '@/features/rsform/components/PickSubstitutions'; import { IRSForm } from '@/features/rsform/models/rsform'; import { APP_COLORS } from '@/styling/color'; import { ICstSubstitute } from '../../models/oss'; interface TabSynthesisProps { validationText: string; isCorrect: boolean; schemas: IRSForm[]; substitutions: ICstSubstitute[]; setSubstitutions: React.Dispatch>; suggestions: ICstSubstitute[]; } function TabSynthesis({ schemas, validationText, isCorrect, substitutions, setSubstitutions, suggestions }: TabSynthesisProps) { return (