Test, Colorize TextFields, disable on submit

This commit is contained in:
Chi Vinh Le
2018-08-27 21:36:36 +02:00
parent 1684ed44ef
commit dcb3c23f56
17 changed files with 265 additions and 8 deletions
@@ -49,6 +49,8 @@ export interface TextFieldProps {
* onChange
*/
onChange?: EventHandler<ChangeEvent<HTMLInputElement>>;
disabled?: boolean;
}
const TextField: StatelessComponent<TextFieldProps> = props => {