import { ErrorData } from '@/components/info/InfoError'; import PickSubstitutions from '@/components/select/PickSubstitutions'; import DataLoader from '@/components/wrap/DataLoader'; import { ICstSubstitute } from '@/models/oss'; import { IRSForm } from '@/models/rsform'; import { prefixes } from '@/utils/constants'; interface TabSynthesisProps { loading: boolean; error: ErrorData; schemas: IRSForm[]; substitutions: ICstSubstitute[]; setSubstitutions: React.Dispatch>; } function TabSynthesis({ schemas, loading, error, substitutions, setSubstitutions }: TabSynthesisProps) { return ( ); } export default TabSynthesis;