JavaScript: Address review comment.

This commit is contained in:
Max Schaefer 2019-07-12 10:47:01 +01:00
Родитель 0ad51ac273
Коммит a41fb6571c
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -11,6 +11,7 @@ import javascript
*
* ```
* <a href={linkTarget()}>{linkText()}</a>
* <Welcome name={user.name}/>
* <><h1>Title</h1>Some <b>text</b></>
* ```
*/
@ -30,10 +31,11 @@ class JSXNode extends Expr, @jsxelement {
/**
* A JSX element.
*
* Example:
* Examples:
*
* ```
* <a href={linkTarget()}>{linkText()}</a>
* <Welcome name={user.name}/>
* ```
*/
class JSXElement extends JSXNode {
@ -87,6 +89,7 @@ class JSXFragment extends JSXNode {
*
* ```
* <a href={linkTarget()}>link</a> // `href={linkTarget()}` is an attribute
* <Welcome name={user.name}/> // `name={user.name}` is an attribute
* <div {...attrs}></div> // `{...attrs}` is a (spread) attribute
* ```
*/