Skip to content

Instantly share code, notes, and snippets.

@polluterofminds
Created January 11, 2021 17:44
Show Gist options
  • Save polluterofminds/169af9a2e399f5c8907f7d297187e315 to your computer and use it in GitHub Desktop.
Save polluterofminds/169af9a2e399f5c8907f7d297187e315 to your computer and use it in GitHub Desktop.
error and success
<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