Skip to content

Translate passing data deeply with context #973

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
check and correcting symbol 'ё'
  • Loading branch information
dekimiq committed Nov 29, 2024
commit 943d7e1902c3b9e1c107b3af504f5841955603c0
2 changes: 1 addition & 1 deletion src/content/learn/passing-data-deeply-with-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ export const LevelContext = createContext(0);

#### Замените "prop drilling" (бурение пропсов) на контекст {/*replace-prop-drilling-with-context*/}

В этом примере переключение `checkbox` изменяет проп `imageSize`, передаваемый каждому `<PlaceImage>`. Состояние элемента `checkbox` хранится в компоненте верхнего уровня `App`, но каждый `<PlaceImage>` должен знать о нем.
В этом примере переключение `checkbox` изменяет проп `imageSize`, передаваемый каждому `<PlaceImage>`. Состояние элемента `checkbox` хранится в компоненте верхнего уровня `App`, но каждый `<PlaceImage>` должен знать о нём.

Сейчас `App` передает `imageSize` в `List`, который передает его в каждый `Place`, который передает его в `PlaceImage`. Удалите проп `imageSize` и вместо этого передавайте его из компонента `App` прямо в `PlaceImage`.

Expand Down