(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # To get the `action` prop: | |
| # | |
| # 1. Go to your dashboard on mailchimp.com and navigate | |
| # to Lists > Signup Forms > Embedded Forms. | |
| # | |
| # 2. Copy the `<form>` action from the generated HTML code. | |
| # | |
| # 3. Pass that into the component via the prop, like so: | |
| # | |
| # <mailchimp-subscribe |
| /** | |
| * RunInThread an other accompanying files are licensed under the MIT | |
| * license. Copyright (C) Frank Appel 2016-2021. All rights reserved | |
| */ | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.