Created
January 11, 2021 17:44
-
-
Save polluterofminds/169af9a2e399f5c8907f7d297187e315 to your computer and use it in GitHub Desktop.
error and success
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style={styles.flexRow}> | |
<form onSubmit={handleSubscribe}> | |
<input | |
style={styles.input} | |
onChange={(e) => setEmail(e.target.value)} | |
value={email} | |
type="email" | |
placeholder="Type your email" | |
/> | |
<button type="submit" style={styles.btn}> | |
Subscribe | |
</button> | |
</form> | |
</div> | |
<div> | |
<p style={styles.error}>{errorMessage}</p> | |
<p style={styles.success}>{successMessage}</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment