From 87bcd76941a169bb67838d753bea58415a392735 Mon Sep 17 00:00:00 2001 From: Coji Mizoguchi Date: Sat, 2 Mar 2024 07:56:38 +0000 Subject: [PATCH] Translate getTextareaProps.md via GitLocalize --- docs/ja/api/react/getTextareaProps.md | 80 +++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 docs/ja/api/react/getTextareaProps.md diff --git a/docs/ja/api/react/getTextareaProps.md b/docs/ja/api/react/getTextareaProps.md new file mode 100644 index 00000000..49632fb2 --- /dev/null +++ b/docs/ja/api/react/getTextareaProps.md @@ -0,0 +1,80 @@ +# getTextareaProps + +テキストエリア要素をアクセシブルにするために必要なすべてのプロパティを返すヘルパーです。 + +```tsx +const props = getTextareaProps(meta, options); +``` + +## 例 + +```tsx +import { useForm, getTextareaProps } from '@conform-to/react'; + +function Example() { + const [form, fields] = useForm(); + + return