From cd2086b38cd6c09cb9cbefc2f9899c6071aa16db Mon Sep 17 00:00:00 2001 From: Kuldeep Saxena Date: Wed, 20 Dec 2017 02:32:41 +0530 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef171a1..89c081d 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,9 @@ export default reactiveForm(Login, loginForm); ``` ### Note: -While dealing with larger forms & [Form Array’s](docs/api/FormArray.md) it’s highly recommended to use the [Field](docs/api/Field.md) component instead of `reactiveForm` method.`Field` component subscribes a particular control & only update it when it’s or it’s parent state changes, which of course reduces the re-rendering and boost the performance significantly. +While working with larger forms, deep nested forms & [Form Array’s](docs/api/FormArray.md) it’s highly recommended to use the [Field](docs/api/Field.md) component instead of `reactiveForm` method. + +`Field` component subscribes a particular control & only update it when it’s or it’s parent’s state changes, which of course reduces the re-rendering and boost the performance significantly. ```js