Skip to content

Commit 208360e

Browse files
committed
Oopsie
1 parent 8667b40 commit 208360e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

fixtures/flight/src/App.server.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ export default function App() {
1818
<Counter2 />
1919
<ul>
2020
{todos.map(todo => (
21-
<React.Fragment key={todo.id}>
22-
<li>
23-
{todo.text} <DeleteTodo id={todo.id} />
24-
</li>
25-
</React.Fragment>
21+
<li key={todo.id}>
22+
{todo.text} <DeleteTodo id={todo.id} />
23+
</li>
2624
))}
2725
</ul>
2826
<AddTodo />

0 commit comments

Comments
 (0)