Skip to content

Commit

Permalink
Тэг -> тег
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Soloydenko authored and another-guy committed Feb 9, 2019
1 parent 6fa0238 commit 7697e89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/introducing-jsx.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ const element = <img src={user.avatarUrl}></img>;
### Использование дочерних элементов в JSX {#specifying-children-with-jsx}

Если тэг пуст, то его можно сразу же закрыть с помощью `/>` точно так же, как и в XML:
Если тег пуст, то его можно сразу же закрыть с помощью `/>` точно так же, как и в XML:

```js
const element = <img src={user.avatarUrl} />;
```

Но JSX тэги могут и содержать дочерние элементы:
Но JSX теги могут и содержать дочерние элементы:

```js
const element = (
Expand Down

0 comments on commit 7697e89

Please sign in to comment.