First integration of forms

This commit is contained in:
Belén Curcio
2018-08-12 23:08:23 -03:00
parent ab4ca7f24c
commit 8a7ea9cdef
3 changed files with 113 additions and 53 deletions
@@ -37,6 +37,14 @@ export interface TextFieldProps {
* Mark as readonly
*/
readOnly?: boolean;
/**
* Name
*/
name?: string;
/**
* onChange
*/
onChange?: <T>(event: any) => void;
}
const TextField: StatelessComponent<TextFieldProps> = props => {