import React from 'react'; import { ComponentInfo } from '../../proxy/developerKit/componentInfo'; interface ComponentSelectorProps { components: ComponentInfo[]; selectedComponentId: string | null; onSelectComponent: (componentId: string | null) => void; onRefresh: () => void; } const ComponentSelector: React.FC = ({ components, selectedComponentId, onSelectComponent, onRefresh }) => { return (
); }; export default ComponentSelector;