Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alina Listunova <[email protected]>
  • Loading branch information
astropsy999 and alinkedd authored Oct 13, 2024
1 parent 996cc2f commit 7a094ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/content/learn/scaling-up-with-reducer-and-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ ul, li { margin: 0; padding: 0; }
<TaskList tasks={tasks} dispatch={dispatch} />
```js
<TaskList
tasks={tasks} onChangeTask={handleChangeTask} onDeleteTask={handleDeleteTask}
tasks={tasks}
onChangeTask={handleChangeTask}
onDeleteTask={handleDeleteTask}
/>
```

Expand Down

0 comments on commit 7a094ce

Please sign in to comment.