mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
![]() |
'use client';
|
||
|
|
||
|
import { LibraryItemID } from '@/models/library';
|
||
|
import { IRSForm } from '@/models/rsform';
|
||
|
|
||
|
interface ConstituentsTabProps {
|
||
|
schema?: IRSForm;
|
||
|
loading?: boolean;
|
||
|
selected: LibraryItemID[];
|
||
|
setSelected: React.Dispatch<LibraryItemID[]>;
|
||
|
}
|
||
|
|
||
|
// { schema, loading, selected, setSelected }: ConstituentsTabProps
|
||
|
function ConstituentsTab(props: ConstituentsTabProps) {
|
||
|
return <>2 - {props.loading}</>;
|
||
|
}
|
||
|
|
||
|
export default ConstituentsTab;
|