Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/jsx.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ Any JSX _attributes_ become **props** (parameters) of the React element. The val

## Children

Any children elements should go between the opening tag, `<div>`, and closing tag `</div>`. Elements without children can using a self-closing tag, like `<div />`, as a shorthand.
Any children elements should go between the opening tag, `<div>`, and closing tag `</div>`. Elements without children can use a self-closing tag, like `<div />`, as a shorthand.

<Example panes={['editor', 'transpiler']} code={jsx} />

> When a JSX element wraps to multiple lines, we often write it when parentheses around it, since it looks nicer.
> When a JSX element wraps to multiple lines, we often write it with parentheses around it, since it looks nicer.

## Interpolation

Expand Down