import * as React from 'react'; import { TextInput, inputType } from '../../core'; export interface IMultiselectInputProps { value: string; onChange: (event: any) => void; } export const MultiSelectInput = ({ value, onChange }: IMultiselectInputProps) => { return (
); };