@giancosta86/omnicourse
Version:
Interactive, React-based drill-down analysis of your learning experience
10 lines • 454 B
TypeScript
/// <reference types="react" />
import { TaxonomyKey } from "@giancosta86/omnicourse-core";
export interface Props {
label: string;
taxonomyKeys: readonly TaxonomyKey[];
selectedTaxonomyId: string;
setSelectedTaxonomyId: (taxonomyId: string) => void;
}
export declare const TaxonomySelectionBox: ({ label, taxonomyKeys, selectedTaxonomyId, setSelectedTaxonomyId }: Props) => JSX.Element;
//# sourceMappingURL=TaxonomySelectionBox.d.ts.map