import * as React from 'react'; import cn from 'classnames'; import { TextInputProps } from './types'; const TextInput: React.SFC = (props) => { const { className, placeholder, onChange } = props; const cnInput = cn('form-control', className); return ( ); }; export default TextInput;