You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

588 B

id title layout permalink prev next
self-closing-tag-ja-JP 自己終了タグ tips tips/self-closing-tag-ja-JP.html if-else-in-JSX-ja-JP.html maximum-number-of-jsx-root-nodes-ja-JP.html

JSXでは、 <MyComponent /> 単体は正しいですが、 <MyComponent> は正しくありません。 全てのタグは、自己終了の形式または対応する終了タグ( </MyComponent> )で閉じるべきです。

注意:

全てのReactコンポーネントは <div /> のように自己終了タグになり得ます。 <div></div> もまた同様です。