import { ErrorData } from '@/components/info/InfoError'; import PickSubstitutions from '@/components/select/PickSubstitutions'; import DataLoader from '@/components/wrap/DataLoader'; import { LibraryItemID } from '@/models/library'; import { ICstSubstitute, IOperation } from '@/models/oss'; import { ConstituentaID, IConstituenta, IRSForm } from '@/models/rsform'; import { prefixes } from '@/utils/constants'; interface TabSynthesisProps { loading: boolean; error: ErrorData; operations: IOperation[]; getSchema: (id: LibraryItemID) => IRSForm | undefined; getConstituenta: (id: ConstituentaID) => IConstituenta | undefined; getSchemaByCst: (id: ConstituentaID) => IRSForm | undefined; substitutions: ICstSubstitute[]; setSubstitutions: React.Dispatch>; } function TabSynthesis({ operations, loading, error, getSchema, getConstituenta, getSchemaByCst, substitutions, setSubstitutions }: TabSynthesisProps) { return ( ); } export default TabSynthesis;