diff --git a/public/images/tutorial/codesandbox-devtools.png b/public/images/tutorial/codesandbox-devtools.png
deleted file mode 100644
index 1f7ebd500..000000000
Binary files a/public/images/tutorial/codesandbox-devtools.png and /dev/null differ
diff --git a/public/images/tutorial/components-tab.png b/public/images/tutorial/components-tab.png
new file mode 100644
index 000000000..90ce0770e
Binary files /dev/null and b/public/images/tutorial/components-tab.png differ
diff --git a/public/images/tutorial/devtools-inspect.gif b/public/images/tutorial/devtools-inspect.gif
new file mode 100644
index 000000000..5c623e6a7
Binary files /dev/null and b/public/images/tutorial/devtools-inspect.gif differ
diff --git a/public/images/tutorial/devtools-select.gif b/public/images/tutorial/devtools-select.gif
deleted file mode 100644
index dd1e1aa61..000000000
Binary files a/public/images/tutorial/devtools-select.gif and /dev/null differ
diff --git a/public/images/tutorial/sandbox-new-tab.png b/public/images/tutorial/sandbox-new-tab.png
new file mode 100644
index 000000000..093a363fb
Binary files /dev/null and b/public/images/tutorial/sandbox-new-tab.png differ
diff --git a/src/content/learn/tutorial-tic-tac-toe.md b/src/content/learn/tutorial-tic-tac-toe.md
index 4fc6dc651..c7dd0e7f4 100644
--- a/src/content/learn/tutorial-tic-tac-toe.md
+++ b/src/content/learn/tutorial-tic-tac-toe.md
@@ -899,19 +899,20 @@ body {
### React Geliştirici Araçları {/*react-developer-tools*/}
-React DevTools, React bileşenlerinizin prop'larını ve state'ini kontrol etmenize olanak sağlar. React DevTools sekmesini CodeSandbox'ın _browser_ bölümünün en altında bulabilirsiniz:
+React Developer Tools, React component’lerinizin props ve state’ini kontrol etmenizi sağlar. [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en), [Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/) ve [Edge](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil) browser extension olarak kullanılabilir.
-
+Yükledikten sonra, React kullanan siteler için browser Developer Tools içinde yeni bir *Components* tab’ı görünür. CodeSandbox’ta takip ediyorsanız, önce sandbox preview’unuzu yeni bir tab’da açmanız gerekir:
-Ekrandaki herhangi bir bileşeni incelemek için, React DevTools'un sol üst köşesindeki butonu kullanın:
+
-
+Ardından preview sayfasında browser’ınızın DevTools’unu açın ve *Components* tab’ını bulun:
-
+
-Yerel geliştirme için, React DevTools, [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en), [Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/) ve [Edge](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil) tarayıcılarında eklentiye sahiptir. Eklentiyi kurun ve React kullanan sitelerde tarayıcınızın Geliştirici Araçlarında *Components(bileşenler)* sekmesi gözükecektir.
+Ekrandaki belirli bir component’i inspect etmek için Components tab’ının sol üst köşesindeki button’u kullanın:
+
+
-
## Oyunu tamamlama {/*completing-the-game*/}
diff --git a/src/content/reference/react/Fragment.md b/src/content/reference/react/Fragment.md
index 2407a1c59..57f2f4d33 100644
--- a/src/content/reference/react/Fragment.md
+++ b/src/content/reference/react/Fragment.md
@@ -46,114 +46,114 @@ Tek bir elemana ihtiyaç duyduğunuz durumlarda, elemanları `` içine
Bir Fragment’a `ref` geçirdiğinizde, React bir `FragmentInstance` object’i sağlar. Bu object, Fragment tarafından sarılan birinci seviye DOM child’larıyla etkileşim kurmak için method’lar implemente eder.
-* [`addEventListener`](#addeventlistener) and [`removeEventListener`](#removeeventlistener) manage event listeners across all first-level DOM children.
-* [`dispatchEvent`](#dispatchevent) dispatches an event on the Fragment, which can bubble to the DOM parent.
-* [`focus`](#focus), [`focusLast`](#focuslast), and [`blur`](#blur) manage focus across all nested children depth-first.
-* [`observeUsing`](#observeusing) and [`unobserveUsing`](#unobserveusing) attach and detach `IntersectionObserver` or `ResizeObserver` instances.
-* [`getClientRects`](#getclientrects) returns bounding rectangles of all first-level DOM children.
-* [`getRootNode`](#getrootnode) returns the root node of the Fragment's parent.
-* [`compareDocumentPosition`](#comparedocumentposition) compares the Fragment's position with another node.
-* [`scrollIntoView`](#scrollintoview) scrolls the Fragment's children into view.
+* [`addEventListener`](#addeventlistener) ve [`removeEventListener`](#removeeventlistener), tüm birinci seviye DOM child’ları üzerinde event listener’ları yönetir.
+* [`dispatchEvent`](#dispatchevent), Fragment üzerinde bir event dispatch eder; bu event DOM parent’a bubble olabilir.
+* [`focus`](#focus), [`focusLast`](#focuslast) ve [`blur`](#blur), tüm nested child’lar üzerinde depth-first şekilde focus’u yönetir.
+* [`observeUsing`](#observeusing) ve [`unobserveUsing`](#unobserveusing), `IntersectionObserver` veya `ResizeObserver` instance’larını attach ve detach eder.
+* [`getClientRects`](#getclientrects), tüm birinci seviye DOM child’larının bounding rectangle’larını döndürür.
+* [`getRootNode`](#getrootnode), Fragment’ın parent’ının root node’unu döndürür.
+* [`compareDocumentPosition`](#comparedocumentposition), Fragment’ın konumunu başka bir node ile karşılaştırır.
+* [`scrollIntoView`](#scrollintoview), Fragment’ın child’larını görünüme kaydırır.
---
#### `addEventListener(type, listener, options?)` {/*addeventlistener*/}
-Adds an event listener to all first-level DOM children of the Fragment.
+Fragment’ın tüm birinci seviye DOM child’larına bir event listener ekler.
```js
fragmentRef.current.addEventListener('click', handleClick);
```
-##### Parameters {/*addeventlistener-parameters*/}
+##### Parametreler {/*addeventlistener-parameters*/}
-* `type`: A string representing the event type to listen for (e.g. `'click'`, `'focus'`).
-* `listener`: The event handler function.
-* **optional** `options`: An options object or boolean for capture, matching the [DOM `addEventListener` API.](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
+* `type`: Dinlenecek event type’ını temsil eden bir string (örn. `'click'`, `'focus'`).
+* `listener`: Event handler function.
+* **optional** `options`: [DOM `addEventListener` API’siyle](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) eşleşen, capture için kullanılan bir options object’i veya boolean.
##### Returns {/*addeventlistener-returns*/}
-`addEventListener` does not return anything (`undefined`).
+`addEventListener` herhangi bir şey döndürmez (`undefined`).
---
#### `removeEventListener(type, listener, options?)` {/*removeeventlistener*/}
-Removes an event listener from all first-level DOM children of the Fragment.
+Fragment’ın tüm birinci seviye DOM child’larından bir event listener’ı kaldırır.
```js
fragmentRef.current.removeEventListener('click', handleClick);
```
-##### Parameters {/*removeeventlistener-parameters*/}
+##### Parametreler {/*removeeventlistener-parameters*/}
-* `type`: The event type string.
-* `listener`: The event handler function to remove.
-* **optional** `options`: An options object or boolean, matching the [DOM `removeEventListener` API.](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
+* `type`: Event type string’i.
+* `listener`: Kaldırılacak event handler function.
+* **optional** `options`: [DOM `removeEventListener` API’siyle](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener) eşleşen bir options object’i veya boolean.
##### Returns {/*removeeventlistener-returns*/}
-`removeEventListener` does not return anything (`undefined`).
+`removeEventListener` herhangi bir şey döndürmez (`undefined`).
---
#### `dispatchEvent(event)` {/*dispatchevent*/}
-Dispatches an event on the Fragment. Added event listeners are called, and the event can bubble to the Fragment's DOM parent.
+Fragment üzerinde bir event dispatch eder. Eklenen event listener’lar çağrılır ve event Fragment’ın DOM parent’ına bubble olabilir.
```js
fragmentRef.current.dispatchEvent(new Event('custom', { bubbles: true }));
```
-##### Parameters {/*dispatchevent-parameters*/}
+##### Parametreler {/*dispatchevent-parameters*/}
-* `event`: An [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event) object to dispatch. If `bubbles` is `true`, the event bubbles to the Fragment's parent DOM node.
+* `event`: Dispatch edilecek bir [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event) object’i. Eğer `bubbles` `true` ise, event Fragment’ın parent DOM node’una bubble olur.
##### Returns {/*dispatchevent-returns*/}
-`true` if the event was not cancelled, `false` if `preventDefault()` was called.
+Event cancel edilmediyse `true`, `preventDefault()` çağrıldıysa `false`.
---
#### `focus(options?)` {/*focus*/}
-Focuses the first focusable DOM node in the Fragment. Unlike calling `element.focus()` on a DOM element, this method searches *all* nested children depth-first until it finds a focusable element—not just the element itself or its direct children.
+Fragment içindeki ilk focusable DOM node’una focus eder. Bir DOM element üzerinde `element.focus()` çağırmaktan farklı olarak, bu method yalnızca elementin kendisini veya direct child’larını değil, focusable bir element bulana kadar *tüm* nested child’ları depth-first şekilde arar.
```js
fragmentRef.current.focus();
```
-##### Parameters {/*focus-parameters*/}
+##### Parametreler {/*focus-parameters*/}
-* **optional** `options`: A [`FocusOptions`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus#options) object (e.g. `{ preventScroll: true }`).
+* **optional** `options`: Bir [`FocusOptions`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus#options) object’i (örn. `{ preventScroll: true }`).
##### Returns {/*focus-returns*/}
-`focus` does not return anything (`undefined`).
+`focus` herhangi bir şey döndürmez (`undefined`).
---
#### `focusLast(options?)` {/*focuslast*/}
-Focuses the last focusable DOM node in the Fragment. Searches nested children depth-first, then iterates in reverse.
+Fragment içindeki son focusable DOM node’una focus eder. Nested child’ları depth-first şekilde arar, ardından ters sırada iterate eder.
```js
fragmentRef.current.focusLast();
```
-##### Parameters {/*focuslast-parameters*/}
+##### Parametreler {/*focuslast-parameters*/}
-* **optional** `options`: A [`FocusOptions`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus#options) object.
+* **optional** `options`: Bir [`FocusOptions`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus#options) object’i.
##### Returns {/*focuslast-returns*/}
-`focusLast` does not return anything (`undefined`).
+`focusLast` herhangi bir şey döndürmez (`undefined`).
---
#### `blur()` {/*blur*/}
-Removes focus from the active element if it is within the Fragment. If `document.activeElement` is not within the Fragment, `blur` does nothing.
+Active element Fragment içindeyse focus’u kaldırır. Eğer `document.activeElement` Fragment içinde değilse, `blur` hiçbir şey yapmaz.
```js
fragmentRef.current.blur();
@@ -161,50 +161,50 @@ fragmentRef.current.blur();
##### Returns {/*blur-returns*/}
-`blur` does not return anything (`undefined`).
+`blur` herhangi bir şey döndürmez (`undefined`).
---
#### `observeUsing(observer)` {/*observeusing*/}
-Starts observing all first-level DOM children of the Fragment with the provided observer.
+Sağlanan observer ile Fragment’ın tüm birinci seviye DOM child’larını observe etmeye başlar.
```js
const observer = new IntersectionObserver(callback, options);
fragmentRef.current.observeUsing(observer);
```
-##### Parameters {/*observeusing-parameters*/}
+##### Parametreler {/*observeusing-parameters*/}
-* `observer`: An [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver) or [`ResizeObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) instance.
+* `observer`: Bir [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver) veya [`ResizeObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) instance’ı.
##### Returns {/*observeusing-returns*/}
-`observeUsing` does not return anything (`undefined`).
+`observeUsing` herhangi bir şey döndürmez (`undefined`).
---
#### `unobserveUsing(observer)` {/*unobserveusing*/}
-Stops observing the Fragment's DOM children with the specified observer.
+Belirtilen observer ile Fragment’ın DOM child’larını observe etmeyi durdurur.
```js
fragmentRef.current.unobserveUsing(observer);
```
-##### Parameters {/*unobserveusing-parameters*/}
+##### Parametreler {/*unobserveusing-parameters*/}
-* `observer`: The same `IntersectionObserver` or `ResizeObserver` instance previously passed to [`observeUsing`](#observeusing).
+* `observer`: Daha önce [`observeUsing`](#observeusing)’e geçirilen aynı `IntersectionObserver` veya `ResizeObserver` instance’ı.
##### Returns {/*unobserveusing-returns*/}
-`unobserveUsing` does not return anything (`undefined`).
+`unobserveUsing` herhangi bir şey döndürmez (`undefined`).
---
#### `getClientRects()` {/*getclientrects*/}
-Returns a flat array of [`DOMRect`](https://developer.mozilla.org/en-US/docs/Web/API/DOMRect) objects representing the bounding rectangles of all first-level DOM children.
+Tüm birinci seviye DOM child’larının bounding rectangle’larını temsil eden [`DOMRect`](https://developer.mozilla.org/en-US/docs/Web/API/DOMRect) object’lerinden oluşan flat bir array döndürür.
```js
const rects = fragmentRef.current.getClientRects();
@@ -212,25 +212,25 @@ const rects = fragmentRef.current.getClientRects();
##### Returns {/*getclientrects-returns*/}
-An `Array` containing the bounding rectangles of all children.
+Tüm child’ların bounding rectangle’larını içeren bir `Array`.
---
#### `getRootNode(options?)` {/*getrootnode*/}
-Returns the root node containing the Fragment's parent DOM node, matching the behavior of [`Node.getRootNode()`](https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode).
+[`Node.getRootNode()`](https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode) davranışıyla eşleşecek şekilde, Fragment’ın parent DOM node’unu içeren root node’u döndürür.
```js
const root = fragmentRef.current.getRootNode();
```
-##### Parameters {/*getrootnode-parameters*/}
+##### Parametreler {/*getrootnode-parameters*/}
-* **optional** `options`: An object with a `composed` boolean property, matching the [DOM `getRootNode` API.](https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode#options)
+* **optional** `options`: [DOM `getRootNode` API’siyle](https://developer.mozilla.org/en-US/docs/Web/API/Node/getRootNode#options) eşleşen, `composed` boolean property’sine sahip bir object.
##### Returns {/*getrootnode-returns*/}
-A `Document`, `ShadowRoot`, or the `FragmentInstance` itself if there is no parent DOM node.
+Bir `Document`, `ShadowRoot` veya parent DOM node yoksa `FragmentInstance`’ın kendisi.
---
@@ -254,34 +254,34 @@ A bitmask of [position flags](https://developer.mozilla.org/en-US/docs/Web/API/N
#### `scrollIntoView(alignToTop?)` {/*scrollintoview*/}
-Scrolls the Fragment's children into view. When `alignToTop` is `true` or omitted, scrolls to align the first child with the top of the scrollable ancestor. When `alignToTop` is `false`, scrolls to align the last child with the bottom.
+Fragment’ın child’larını görünüme kaydırır. `alignToTop` `true` olduğunda veya atlandığında, ilk child’ı scrollable ancestor’ın üst kısmıyla hizalayacak şekilde kaydırır. `alignToTop` `false` olduğunda, son child’ı alt kısımla hizalayacak şekilde kaydırır.
```js
fragmentRef.current.scrollIntoView();
```
-##### Parameters {/*scrollintoview-parameters*/}
+##### Parametreler {/*scrollintoview-parameters*/}
-* **optional** `alignToTop`: A boolean. If `true` (the default), scrolls the first child to the top of the scrollable area. If `false`, scrolls the last child to the bottom. Unlike [`Element.scrollIntoView()`](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView), this method does not accept a `ScrollIntoViewOptions` object.
+* **optional** `alignToTop`: Bir boolean. `true` ise (default), ilk child’ı scrollable area’nın üst kısmına kaydırır. `false` ise, son child’ı alt kısma kaydırır. [`Element.scrollIntoView()`](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView)’dan farklı olarak, bu method bir `ScrollIntoViewOptions` object’i kabul etmez.
-##### Returns {/*scrollintoview-returns*/}
+##### Döndürür {/*scrollintoview-returns*/}
-`scrollIntoView` does not return anything (`undefined`).
+`scrollIntoView` herhangi bir şey döndürmez (`undefined`).
-##### Caveats {/*scrollintoview-caveats*/}
+##### Uyarılar {/*scrollintoview-caveats*/}
-* `scrollIntoView` does not accept an options object. Passing one throws an error. Use the `alignToTop` boolean instead.
-* When the Fragment has no children, `scrollIntoView` scrolls the nearest sibling or parent into view as a fallback.
+* `scrollIntoView` bir options object’i kabul etmez. Bir object geçirmek hata fırlatır. Bunun yerine `alignToTop` boolean’ını kullanın.
+* Fragment’ın child’ı yoksa, `scrollIntoView` fallback olarak en yakın sibling’i veya parent’ı görünüme kaydırır.
---
-#### `FragmentInstance` Caveats {/*fragmentinstance-caveats*/}
+#### `FragmentInstance` Uyarıları {/*fragmentinstance-caveats*/}
-* Methods that target children (such as `addEventListener`, `observeUsing`, and `getClientRects`) operate on *first-level host (DOM) children* of the Fragment. They do not directly target children nested inside another DOM element.
-* `focus` and `focusLast` search nested children depth-first for focusable elements, unlike event and observer methods which only target first-level host children.
-* `observeUsing` does not work on text nodes. React logs a warning in development if the Fragment contains only text children.
-* React does not apply event listeners added via `addEventListener` to hidden [``](/reference/react/Activity) trees. When an `Activity` boundary switches from hidden to visible, listeners are applied automatically.
-* Each first-level DOM child of a Fragment with a `ref` gets a `reactFragments` property—a `Set` containing all Fragment instances that own the element. This enables [caching a shared observer](#caching-global-intersection-observer) across multiple Fragments.
+* Child’ları hedefleyen method’lar (`addEventListener`, `observeUsing` ve `getClientRects` gibi), Fragment’ın *birinci seviye host (DOM) child’ları* üzerinde çalışır. Başka bir DOM element içinde nested olan child’ları doğrudan hedeflemezler.
+* `focus` ve `focusLast`, focusable element’leri bulmak için nested child’ları depth-first şekilde arar; event ve observer method’ları ise yalnızca birinci seviye host child’ları hedefler.
+* `observeUsing` text node’lar üzerinde çalışmaz. Fragment yalnızca text child’ları içeriyorsa React development ortamında bir warning loglar.
+* React, `addEventListener` ile eklenen event listener’ları gizli [``](/reference/react/Activity) tree’lerine uygulamaz. Bir `Activity` boundary hidden’dan visible’a geçtiğinde, listener’lar otomatik olarak uygulanır.
+* `ref`’e sahip bir Fragment’ın her birinci seviye DOM child’ı bir `reactFragments` property’si alır: element’i sahiplenen tüm Fragment instance’larını içeren bir `Set`. Bu, birden fazla Fragment arasında [shared observer cache’lemeyi](#caching-global-intersection-observer) mümkün kılar.
---
@@ -522,13 +522,13 @@ export default function App() {
-The `addEventListener` call applies the listener to every first-level DOM child of the Fragment. When children are dynamically added or removed, the `FragmentInstance` automatically adds or removes the listener.
+`addEventListener` çağrısı, listener’ı Fragment’ın her birinci seviye DOM child’ına uygular. Child’lar dinamik olarak eklendiğinde veya kaldırıldığında, `FragmentInstance` listener’ı otomatik olarak ekler veya kaldırır.
-#### Which children does a Fragment ref target? {/*which-children-does-a-fragment-ref-target*/}
+#### Bir Fragment ref’i hangi child’ları hedefler? {/*which-children-does-a-fragment-ref-target*/}
-A `FragmentInstance` targets the **first-level host (DOM) children** of the Fragment. Consider this tree:
+Bir `FragmentInstance`, Fragment’ın **birinci seviye host (DOM) child’larını** hedefler. Şu tree’yi düşünün:
```js
@@ -542,9 +542,9 @@ A `FragmentInstance` targets the **first-level host (DOM) children** of the Frag
```
-`Wrapper` is a React component, so the `FragmentInstance` looks through it to find DOM nodes. The targeted children are `A`, `B`, and `D`. `C` is not targeted because it is nested inside the DOM element `B`.
+`Wrapper` bir React component’i olduğu için, `FragmentInstance` DOM node’larını bulmak üzere onun içinden geçerek bakar. Hedeflenen child’lar `A`, `B` ve `D`’dir. `C` hedeflenmez çünkü DOM elementi `B` içinde nested durumdadır.
-Methods like `addEventListener`, `observeUsing`, and `getClientRects` operate on these first-level DOM children. `focus` and `focusLast` are different—they search *all* nested children depth-first to find focusable elements.
+`addEventListener`, `observeUsing` ve `getClientRects` gibi method’lar bu birinci seviye DOM child’ları üzerinde çalışır. `focus` ve `focusLast` farklıdır; focusable element’leri bulmak için *tüm* nested child’ları depth-first şekilde ararlar.
@@ -631,13 +631,13 @@ label {
-Calling `focus()` focuses the `street` input—even though it is nested inside a `
}>
@@ -1325,8 +1326,9 @@ Bu durum genellikle render sırasında doğrudan `fetch` veya bir `async` functi
```js
function Albums() {
- // 🔴 This creates a new Promise on every render
+ // 🔴 Bu, her render’da yeni bir Promise oluşturur
const albums = use(fetch('/albums'));
+
// ...
}
```
@@ -1334,8 +1336,8 @@ function Albums() {
Bunu düzeltmek için, aynı instance’ın yeniden kullanılmasını sağlayacak şekilde Promise’i cache’leyin:
```js
-// ✅ fetchData returns the same Promise for the same URL
+// ✅ fetchData aynı URL için aynı Promise’i döndürür
const albums = use(fetchData('/albums'));
```
-Daha fazla detay için [Client Components için Promise cache’leme](#caching-promises-for-client-components) bölümüne bakın.
+Daha fazla detay için [Client Components için Promise cache’leme](#caching-promises-for-client-components) bölümüne bakın.
\ No newline at end of file
diff --git a/src/content/reference/react/useContext.md b/src/content/reference/react/useContext.md
index 4ccd38bf2..480643ac9 100644
--- a/src/content/reference/react/useContext.md
+++ b/src/content/reference/react/useContext.md
@@ -826,7 +826,7 @@ const initialTasks = [
```
```js src/AddTask.js
-import { useState, useContext } from 'react';
+import { useState } from 'react';
import { useTasksDispatch } from './TasksContext.js';
export default function AddTask() {
@@ -855,7 +855,7 @@ let nextId = 3;
```
```js src/TaskList.js
-import { useState, useContext } from 'react';
+import { useState } from 'react';
import { useTasks, useTasksDispatch } from './TasksContext.js';
export default function TaskList() {
diff --git a/src/content/reference/react/useLayoutEffect.md b/src/content/reference/react/useLayoutEffect.md
index 56c789ad9..30015fd60 100644
--- a/src/content/reference/react/useLayoutEffect.md
+++ b/src/content/reference/react/useLayoutEffect.md
@@ -47,7 +47,7 @@ function Tooltip() {
#### Parametreler {/*parameters*/}
-* `setup`: Effect mantığınızı içeren fonksiyon. setup fonksiyonunuz isteğe bağlı olarak bir *cleanup* fonksiyonu da döndürebilir. Component’iniz DOM’a [commit ettikten](/learn/render-and-commit#step-3-react-commits-changes-to-the-dom) sonra ve browser ekranı yeniden paint etmeden önce, React setup fonksiyonunuzu çalıştırır. Değişen dependency’lerle gerçekleşen her commit’ten sonra React önce eski değerlerle cleanup fonksiyonunu çalıştırır (eğer sağladıysanız), ardından yeni değerlerle setup fonksiyonunuzu çalıştırır. Component’iniz DOM’dan kaldırılmadan önce React cleanup fonksiyonunuzu çalıştırır.
+* `setup`: Effect mantığınızı içeren fonksiyon. setup fonksiyonunuz isteğe bağlı olarak bir **cleanup** fonksiyonu da döndürebilir. Component’iniz DOM’a [commit ettikten](/learn/render-and-commit#step-3-react-commits-changes-to-the-dom) sonra ve browser ekranı yeniden paint etmeden önce, React setup fonksiyonunuzu çalıştırır. Değişen dependency’lerle gerçekleşen her commit’ten sonra React önce eski değerlerle cleanup fonksiyonunu çalıştırır (eğer sağladıysanız), ardından yeni değerlerle setup fonksiyonunuzu çalıştırır. Component’iniz DOM’dan kaldırılmadan önce React cleanup fonksiyonunuzu çalıştırır.
* **opsiyonel** `dependencies`: `setup` kodu içinde referans verilen tüm reactive value’ların listesidir. Reactive value’lar; props, state ve bileşen gövdesi içinde doğrudan tanımlanan tüm değişkenler ve fonksiyonları kapsar. Eğer linter’ınız [React için yapılandırılmışsa](/learn/editor-setup#linting), her reactive value’nun dependency olarak doğru şekilde belirtildiğini doğrular. Dependency listesi sabit sayıda öğe içermeli ve `[dep1, dep2, dep3]` şeklinde inline olarak yazılmalıdır. React, her bir dependency’yi önceki değeriyle [`Object.is`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is) karşılaştırması kullanarak kıyaslar. Bu argümanı atladığınızda, Effect’iniz bileşenin her commit’inden sonra yeniden çalışır.
diff --git a/src/content/versions.md b/src/content/versions.md
index b48dc364c..8cc54085b 100644
--- a/src/content/versions.md
+++ b/src/content/versions.md
@@ -54,13 +54,28 @@ For versions older than React 15, see [15.react.dev](https://15.react.dev).
- [React 19 Deep Dive: Coordinating HTML](https://www.youtube.com/watch?v=IBBN-s77YSI)
**Releases**
-- [v19.2.1 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1922-dec-11-2025)
+- [v19.2.7 (June, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1927-june-1-2026)
+- [v19.2.6 (May, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1926-may-6-2026)
+- [v19.2.5 (March, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1925-march-18-2026)
+- [v19.2.4 (January, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1924-jan-26-2026)
+- [v19.2.3 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1923-dec-11-2025)
+- [v19.2.2 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1922-dec-11-2025)
- [v19.2.1 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1921-dec-3-2025)
- [v19.2.0 (October, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1920-october-1st-2025)
+- [v19.1.8 (June, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1918-june-1-2026)
+- [v19.1.7 (May, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1917-may-6-2026)
+- [v19.1.6 (March, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1916-march-18-2026)
+- [v19.1.5 (January, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1915-jan-26-2026)
+- [v19.1.4 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1914-dec-11-2025)
- [v19.1.3 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1913-dec-11-2025)
- [v19.1.2 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1912-dec-3-2025)
- [v19.1.1 (July, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1911-july-28-2025)
- [v19.1.0 (March, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1910-march-28-2025)
+- [v19.0.7 (June, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1907-june-1-2026)
+- [v19.0.6 (May, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1906-may-6-2026)
+- [v19.0.5 (March, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1905-march-18-2026)
+- [v19.0.4 (January, 2026)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1904-jan-26-2026)
+- [v19.0.3 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1903-dec-11-2025)
- [v19.0.2 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1902-dec-11-2025)
- [v19.0.1 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1901-dec-3-2025)
- [v19.0.0 (December, 2024)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1900-december-5-2024)