analytica-frontend-lib
Version:
Repositório público dos componentes utilizados nas plataformas da Analytica Ensino
23 lines • 891 B
TypeScript
import type { SimulatedSubjectMenuProps } from './types';
/**
* SimulatedSubjectMenu - Menu component for selecting subjects in simulated exams
*
* Fetches subjects that have questions in simulated exams.
* Subjects can be filtered by area of knowledge (Área de Conhecimento).
*
* @example
* ```tsx
* import api from '@/services/apiService';
*
* <SimulatedSubjectMenu
* api={api}
* areaKnowledgeId={selectedAreaKnowledgeId}
* selectedSubjectId={selectedSubjectId}
* onSubjectChange={handleSubjectChange}
* loading={generalOverviewLoading}
* />
* ```
*/
export declare function SimulatedSubjectMenu({ api, areaKnowledgeId, relatedIds, selectedSubjectId, onSubjectChange, loading: externalLoading, label, }: SimulatedSubjectMenuProps): import("react/jsx-runtime").JSX.Element;
export default SimulatedSubjectMenu;
//# sourceMappingURL=SimulatedSubjectMenu.d.ts.map