You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* updated to work with reactive and template driven forms.
* added a little documentation
* updated based on PR feedback
* updated based on PR feedback.
This supports both [Tempalte driven forms](https://angular.io/guide/forms) and [Reactive driven forms](https://angular.io/guide/reactive-forms).
13
+
14
+
#### Template Driven
15
+
12
16
For the simplest use-cases, the API is very straightforward. Your template
13
17
would look something like this:
14
18
@@ -203,6 +207,15 @@ the `path` property on our first `<select>` element, it would look like this:
203
207
From there, `@angular-redux/form` is able to take that path and extract the value for
204
208
that element from the Redux state.
205
209
210
+
#### Reactive Forms
211
+
The value in "connect" attribute is the value that will show up in the Redux store. The formGroup value is the name of the object in your code that represents the form group.
0 commit comments