Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reactjs/uk.react.dev
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 791de4df5db050b8200b36397296dc6e81c73cdf
Choose a base ref
..
head repository: reactjs/uk.react.dev
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0d9a5f6cb88bb5d4617707053c9fd40715d6a2f1
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 src/content/learn/scaling-up-with-reducer-and-context.md
6 changes: 3 additions & 3 deletions src/content/learn/scaling-up-with-reducer-and-context.md
Original file line number Diff line number Diff line change
@@ -211,11 +211,11 @@ ul, li { margin: 0; padding: 0; }

Наприклад, `TaskApp` передає перелік завдань і обробники подій компоненту `TaskList`:

```jsx
<TaskList tasks={tasks} dispatch={dispatch} />
```js
<TaskList
tasks={tasks}
onChangeTask={handleChangeTask}
onDeleteTask={handleDeleteTask}
tasks={tasks} onChangeTask={handleChangeTask} onDeleteTask={handleDeleteTask}
/>
```