Skip to content

Commit 73e3117

Browse files
committed
Merge branch 'master' of github.com:ngneat/forms-manager
2 parents 320b852 + 98a2799 commit 73e3117

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
## 🔮 Features
1818

19+
✅ Allows Typed Forms!<br>
1920
✅ Auto persists the form's state upon user navigation.<br>
2021
✅ Provides an API to reactively querying any form, from anywhere. <br>
2122
✅ Persist the form's state to local storage.
@@ -55,6 +56,9 @@ import { NgFormsManager } from '@ngneat/forms-manager';
5556
`
5657
})
5758
export class OnboardingComponent {
59+
60+
onboardingForm: FormGroup;
61+
5862
constructor(
5963
private formsManager: NgFormsManager,
6064
private builder: FormBuilder
@@ -247,7 +251,7 @@ export class HomeComponent{
247251
248252
## Using FormArray Controls
249253
250-
When working with a `FormArray`, it's required to pass a `factory` function that instruct how to create the `controls` inside the `FormArray`. For example:
254+
When working with a `FormArray`, it's required to pass a `factory` function that defines how to create the `controls` inside the `FormArray`. For example:
251255
252256
```ts
253257
import { NgFormsManager } from '@ngneat/forms-manager';

0 commit comments

Comments
 (0)