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`<span // Every attribute after this comment will be dropped id="foo" />` ``` **Actual Behavior** ```js // returned vnode { props: {}, } ``` **Expected Behavior** ```js // returned vnode { props: { id: "foo" }, } ```