We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa0238 commit 7697e89Copy full SHA for 7697e89
content/docs/introducing-jsx.md
@@ -111,13 +111,13 @@ const element = <img src={user.avatarUrl}></img>;
111
112
### Использование дочерних элементов в JSX {#specifying-children-with-jsx}
113
114
-Если тэг пуст, то его можно сразу же закрыть с помощью `/>` точно так же, как и в XML:
+Если тег пуст, то его можно сразу же закрыть с помощью `/>` точно так же, как и в XML:
115
116
```js
117
const element = <img src={user.avatarUrl} />;
118
```
119
120
-Но JSX тэги могут и содержать дочерние элементы:
+Но JSX теги могут и содержать дочерние элементы:
121
122
123
const element = (
0 commit comments