import React from 'react'; import { Dropdown } from 'primereact/dropdown'; export type SystemType = 'council' | 'fusemind' | 'canvas'; interface SystemSelectorProps { value: SystemType | null; onChange: (value: SystemType | null) => void; } const systemOptions = [ { label: 'CouncilAI', value: 'council' }, { label: 'FuseMind (AI)', value: 'fusemind' }, { label: 'Canvas API', value: 'canvas' } ]; const SystemSelector: React.FC = ({ value, onChange }) => { return (
Apps & Flows onChange(e.value)} placeholder="Select an integration" className="w-full" showClear />
); }; export default SystemSelector;