Single line comments break props parsing
Abierto
- Lenguaje dominante
- JavaScript
- Estrellas
- 9k
- Forks
- 181
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Single line comments in the opening tag seem to break `props` parsing. The rendered `vnode` will only receive an empty object as props.
```jsx
html``
```
**Actual Behavior**
```js
// returned vnode
{
props: {},
}
```
**Expected Behavior**
```js
// returned vnode
{
props: { id: "foo" },
}
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.