mui-toolpad-extended-tuni
Version:
25 lines (24 loc) • 793 B
TypeScript
import { Platform } from '../../../store/usePlatformStore';
interface FeaturesTabProps {
settings: Platform;
onUpdate: (settings: Platform) => void;
}
/**
* FeaturesTab Component
*
* @version 3.0.0
* @breaking-changes
* - Replaced Grid system with more flexible Box layout
* - Enhanced responsive design with flex-based layouts
* - Improved spacing consistency
* - Optimized component structure for better performance
* - Standardized style properties
*
* Provides interface for:
* - Managing platform-wide feature settings
* - Configuring feature availability
* - Setting feature-specific parameters
* - Managing feature dependencies
*/
export default function FeaturesTab({ settings, onUpdate }: FeaturesTabProps): import("react/jsx-runtime").JSX.Element;
export {};