diff --git a/tips/04-self-closing-tag.ja-JP.md b/tips/04-self-closing-tag.ja-JP.md new file mode 100644 index 00000000..2c411d7e --- /dev/null +++ b/tips/04-self-closing-tag.ja-JP.md @@ -0,0 +1,14 @@ +--- +id: self-closing-tag-ja-JP +title: 自己終了タグ +layout: tips +permalink: self-closing-tag-ja-JP.html +prev: if-else-in-JSX-ja-JP.html +next: maximum-number-of-jsx-root-nodes-ja-JP.html +--- + +JSXでは、 `` 単体は正しいですが、 `` は正しくありません。 全てのタグは、自己終了の形式または対応する終了タグ( `` )で閉じるべきです。 + +> 注意: +> +> 全てのReactコンポーネントは `
` のように自己終了タグになり得ます。 `
` もまた同様です。