mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-11-20 17:21:24 +03:00
19 lines
494 B
TypeScript
19 lines
494 B
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { ICstSubstituteData, IRSForm } from '@/models/rsform';
|
||
|
|
|
||
|
|
interface SubstitutionsTabProps {
|
||
|
|
receiver?: IRSForm;
|
||
|
|
source?: IRSForm;
|
||
|
|
loading?: boolean;
|
||
|
|
substitutions: ICstSubstituteData[];
|
||
|
|
setSubstitutions: React.Dispatch<ICstSubstituteData[]>;
|
||
|
|
}
|
||
|
|
|
||
|
|
// { source, receiver, loading, substitutions, setSubstitutions }: SubstitutionsTabProps
|
||
|
|
function SubstitutionsTab(props: SubstitutionsTabProps) {
|
||
|
|
return <>3 - {props.loading}</>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default SubstitutionsTab;
|