You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/learn/react-compiler.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -319,25 +319,25 @@ Expo uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lü
319
319
320
320
### Metro (React Native) {/*usage-with-react-native-metro*/}
321
321
322
-
React Native uses Babel via Metro, so refer to the [Usage with Babel](#usage-with-babel)section for installation instructions.
322
+
React Native, Babel'i Metro aracılığıyla kullanır, bu nedenle kurulum talimatları için [Babel ile kullanım](#usage-with-babel)bölümüne bakın.
323
323
324
324
### Rspack {/*usage-with-rspack*/}
325
325
326
-
Please refer to [Rspack's docs](https://rspack.dev/guide/tech/react#react-compiler)to enable and use the React Compiler in Rspack apps.
326
+
Rspack uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lütfen [Rspack's docs](https://rspack.dev/guide/tech/react#react-compiler)adresine bakın.
327
327
328
328
### Rsbuild {/*usage-with-rsbuild*/}
329
329
330
-
Please refer to [Rsbuild's docs](https://rsbuild.dev/guide/framework/react#react-compiler)to enable and use the React Compiler in Rsbuild apps.
330
+
Rsbuild uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lütfen [Rsbuild'in dokümanlarına](https://rsbuild.dev/guide/framework/react#react-compiler)bakın.
331
331
332
332
## Troubleshooting {/*troubleshooting*/}
333
333
334
-
To report issues, please first create a minimal repro on the [React Compiler Playground](https://playground.react.dev/)and include it in your bug report. You can open issues in the [facebook/react](https://github.com/facebook/react/issues)repo.
334
+
Sorunları bildirmek için lütfen önce [React Compiler Playground](https://playground.react.dev/)üzerinde minimal bir repro oluşturun ve bunu hata raporunuza ekleyin. Sorunları [facebook/react](https://github.com/facebook/react/issues)reposunda açabilirsiniz.
335
335
336
-
You can also provide feedback in the React Compiler Working Group by applying to be a member. Please see [the README for more details on joining](https://github.com/reactwg/react-compiler).
336
+
Ayrıca üye olmak için başvurarak React Derleyici Çalışma Grubu'nda geri bildirim sağlayabilirsiniz. Üyelik hakkında daha fazla bilgi için lütfen [README'ye](https://github.com/reactwg/react-compiler) bakın.
337
337
338
-
### What does the compiler assume? {/*what-does-the-compiler-assume*/}
338
+
### Derleyici ne varsayıyor? {/*what-does-the-compiler-assume*/}
339
339
340
-
React Compiler assumes that your code:
340
+
React Compiler kodunuzun olduğunu varsayar:
341
341
342
342
1. Is valid, semantic JavaScript.
343
343
2. Tests that nullable/optional values and properties are defined before accessing them (for example, by enabling [`strictNullChecks`](https://www.typescriptlang.org/tsconfig/#strictNullChecks) if using TypeScript), i.e., `if (object.nullableProperty) { object.nullableProperty.foo }` or with optional-chaining `object.nullableProperty?.foo`.
0 commit comments