diff --git a/adev/src/content/guide/forms/signals/overview.md b/adev/src/content/guide/forms/signals/overview.md index 924c6e65134..c9fd61f1bab 100644 --- a/adev/src/content/guide/forms/signals/overview.md +++ b/adev/src/content/guide/forms/signals/overview.md @@ -19,8 +19,7 @@ Signal Forms address these challenges by: Signal Forms work best in new applications built with signals. If you're working with an existing application that uses reactive forms, or if you need production stability guarantees, reactive forms remain a solid choice. - - +NOTE: If you're coming from template or reactive forms, you may be interested in the [comparison guide](guide/forms/signals/comparison). ## Prerequisites @@ -33,7 +32,7 @@ Signal Forms require: Signal Forms are already included in the `@angular/forms` package. Import the necessary functions and directives from `@angular/forms/signals`: ```ts -import { form, Field, required, email } from '@angular/forms/signals' +import {form, Field, required, email} from '@angular/forms/signals'; ``` The `Field` directive must be imported into any component that binds form fields to HTML inputs: @@ -49,12 +48,12 @@ The `Field` directive must be imported into any component that binds form fields To learn more about how Signal Forms work, check out the following guides: - + - +