Skip to content

Commit d3504d4

Browse files
committed
fix broken test
1 parent 25e9d7b commit d3504d4

File tree

1 file changed

+2
-2
lines changed
  • exercises/07.forms/02.solution.action

1 file changed

+2
-2
lines changed

exercises/07.forms/02.solution.action/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { createRoot } from 'react-dom/client'
22

33
function App() {
44
return (
5-
<div>
5+
<form action="api/onboarding">
66
<div>
77
<label htmlFor="usernameInput">Username:</label>
88
<input id="usernameInput" name="username" />
99
</div>
1010
<button type="submit">Submit</button>
11-
</div>
11+
</form>
1212
)
1313
}
1414

0 commit comments

Comments
 (0)