From 61a46487f1b23342ceaa99adbe27c150451a91aa Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Tue, 16 Dec 2025 11:39:14 -0500 Subject: [PATCH] docs: update links to guides in signal forms overview (cherry picked from commit 3750622c465a115cc68cdb2ac92ed193c8f1e52f) --- adev/src/content/guide/forms/signals/overview.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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: - + - +