From c6455d37652c29aa7ef9acf902348b832d8a8a88 Mon Sep 17 00:00:00 2001 From: Hyunseung Lee Date: Thu, 9 Feb 2023 21:24:09 +0900 Subject: [PATCH] Fix typo in forwardRef Beta Docs Reference --- beta/src/content/reference/react/forwardRef.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/reference/react/forwardRef.md b/beta/src/content/reference/react/forwardRef.md index 66dd90e425a..86005116501 100644 --- a/beta/src/content/reference/react/forwardRef.md +++ b/beta/src/content/reference/react/forwardRef.md @@ -139,7 +139,7 @@ Keep in mind that by exposing a ref to the DOM node inside your component, you'r #### Focusing a text input {/*focusing-a-text-input*/} -Clicking the button will focus the input. The `Form` component defines a ref and passes it to the `MyInput` component. The `MyInput` component fowards that ref to the browser ``. This lets the `Form` component focus the ``. +Clicking the button will focus the input. The `Form` component defines a ref and passes it to the `MyInput` component. The `MyInput` component forwards that ref to the browser ``. This lets the `Form` component focus the ``.