import * as React from 'react'; import { TextInput, inputType } from '../..'; import { IDropdownInputProps } from './IPropsConfig' export const DropDownInput = ({ value, onChange, onKeyDown }: IDropdownInputProps) => { return (
); };