-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
Using this, on a react-native:
renderLogin() {
const onLogin = (email, password) => {
console.log(email, password) // user credentials
}
const onResetPassword = (email) => {
console.log(email)
}
return (
<Login
onLogin={onLogin}
onResetPassword={onResetPassword}
/>
);
}
The component warns me against the onLogin undefined :/, any idea?
Metadata
Metadata
Assignees
Labels
No labels