Skip to content

Commit f665c64

Browse files
committed
test: JSXElement: coverage
1 parent d24f34d commit f665c64

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

lib/tokenize/jsx/fixture/jsx-element-nested-with-attributes.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,17 @@ function Login(props) {
2828
/>
2929
</form>
3030
);
31+
}
32+
33+
function FormJoin(props) {
34+
return (
35+
<form
36+
onSubmit={submit}
37+
className="block inline-block width"
38+
action="/join"
39+
method="post"
40+
>
41+
<input id="password" name="password" tabIndex="3" type="password"/>
42+
</form>
43+
);
3144
}

0 commit comments

Comments
 (0)