import * as React from 'react'; import {BaseInput, IBaseInputProps, IBaseInputState} from './base-input'; export interface ITextProps extends IBaseInputProps { placeholder?: string; } export class TextInput extends BaseInput { protected type = 'text'; constructor(props: ITextProps) { super(props); } public render() { const { errorClassName, containerClassName, errorContainerClassName, className, fieldMessage, ...rest } = this.props; return (
); } }