We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f334b9 + 974b507 commit 3303cafCopy full SHA for 3303caf
2 files changed
hooks/13_LoginForm/Readme.md
@@ -424,7 +424,7 @@ _./src/pages/loginPage.tsx_
424
```diff
425
interface PropsForm {
426
onLogin: () => void;
427
-+ onUpdateField: (string, any) => void;
++ onUpdateField: (name: string, value: any) => void;
428
+ loginInfo : LoginEntity;
429
}
430
hooks/13_LoginForm/src/pages/loginPage.tsx
@@ -70,7 +70,7 @@ export const LoginPage = withStyles(styles)(withRouter<Props>(LoginPageInner));
70
71
72
73
- onUpdateField: (string, any) => void;
+ onUpdateField: (name: string, value: any) => void;
74
loginInfo: LoginEntity;
75
76
0 commit comments