Hi, I just have installed the library 'react-form-login' and also add the example code in this way :
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<LoginForm
onSubmit={(username, password, isRemember) => {
// Sending AJAX request ...
console.log(username, password, isRemember);
}}
/>
</header>
</div>
);
}
But I have this error message that appears when I run the app.
This is my first time with React, thank you for helping me
Hi, I just have installed the library
'react-form-login'and also add the example code in this way :But I have this error message that appears when I run the app.
This is my first time with React, thank you for helping me