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.

15 lines
608 B

---
id: self-closing-tag
title: Одиночный тег
layout: tips
permalink: tips/self-closing-tag-ru-RU.html
prev: if-else-in-JSX-ru-RU.html
next: maximum-number-of-jsx-root-nodes-ru-RU.html
---
В JSX все теги необходимо закрывать. Это можно сделать либо в открывающем теге `<MyComponent />`, либо отдельным закрывающим тегом `</MyComponent>`.
> Примечание:
>
> Любой React компонент может быть одиночным: `<div />` это то же самое, что `<div></div>`.