From a8dcd80e2f4946f8fa8e44d950a14d2e01d02364 Mon Sep 17 00:00:00 2001
From: "translate-react-bot[bot]"
<251169733+translate-react-bot[bot]@users.noreply.github.com>
Date: Tue, 2 Jun 2026 14:27:01 +0000
Subject: [PATCH] =?UTF-8?q?docs:=20translate=20`special-props.md`=20to=20?=
=?UTF-8?q?=D0=A0=D1=83=D1=81=D1=81=D0=BA=D0=B8=D0=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/content/warnings/special-props.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/content/warnings/special-props.md b/src/content/warnings/special-props.md
index 1646b531a2..87eff77444 100644
--- a/src/content/warnings/special-props.md
+++ b/src/content/warnings/special-props.md
@@ -2,6 +2,6 @@
title: Special Props Warning
---
-Most props on a JSX element are passed on to the component, however, there are two special props (`ref` and `key`) which are used by React, and are thus not forwarded to the component.
+Большинство пропсов в JSX-элементе передаются в компонент, однако есть два специальных пропса (`ref` и `key`), которые используются React и поэтому не передаются в компонент.
-For instance, you can't read `props.key` from a component. If you need to access the same value within the child component, you should pass it as a different prop (ex: `` and read `props.id`). While this may seem redundant, it's important to separate app logic from hints to React.
+Например, вы не можете прочитать `props.key` из компонента. Если вам нужно получить доступ к тому же значению внутри дочернего компонента, вы должны передать его как другой пропс (например: `` и читать `props.id`). Хотя это может показаться избыточным, важно отделять логику приложения от подсказок для React.
\ No newline at end of file