mui-toolpad-extended-tuni
Version:
23 lines (22 loc) • 829 B
TypeScript
/** @format */
import { NavigationPageStoreItem } from '../../store/useNavigationStore';
interface CourseToolsProps {
microservices: NavigationPageStoreItem[];
}
/**
* Component for managing and displaying course-specific tools.
*
* @version 2.1.0
* @updates
* - Added support for microservice-based tool management
* - Introduced enabled/available tools separation
* - Added service enablement/disablement functionality
* - Enhanced teacher-specific tool configuration
* - Improved UI with centered headings and tool groups
*
* @component
* @param {CourseToolsProps} props
* @param {NavigationPageStoreItem[]} props.microservices - Array of available microservice tools
*/
declare const CourseTools: ({ microservices }: CourseToolsProps) => import("react/jsx-runtime").JSX.Element;
export default CourseTools;