fix(curriculum): fix double space in React forms description (#64605)

This commit is contained in:
Malte B.
2025-12-15 18:59:17 +01:00
committed by GitHub
parent 94c2d812b4
commit cde8852f05
@@ -9,7 +9,7 @@ dashedName: how-do-forms-work-in-react
Forms are fundamental to every web application because they let you handle user input, collect data, and trigger actions.
In React, forms are managed using state or refs, giving you full control over their behavior and validation. These two ways to manage forms are called "controlled" and "uncontrolled" input.
In React, forms are managed using state or refs, giving you full control over their behavior and validation. These two ways to manage forms are called "controlled" and "uncontrolled" input.
Let's look at what controlled and uncontrolled inputs are.