@@ -119,9 +119,9 @@ export default function Albums({ artistId }) {
119119```
120120
121121``` js src/data.js hidden
122- // Note: the way you would do data fetching depends on
123- // the framework that you use together with Suspense .
124- // Normally, the caching logic would be inside a framework .
122+ // Not: Veri çekme işlemini yapma şekliniz, birlikte kullandığınız çatıya bağlıdır
123+ // ve Suspense ile birlikte çalışır .
124+ // Normalde, önbellekleme mantığı bir çatı içinde yer alır .
125125
126126let cache = new Map ();
127127
@@ -141,7 +141,7 @@ async function getData(url) {
141141}
142142
143143async function getAlbums () {
144- // Add a fake delay to make waiting noticeable .
144+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
145145 await new Promise (resolve => {
146146 setTimeout (resolve, 3000 );
147147 });
@@ -334,9 +334,9 @@ export default function Albums({ artistId }) {
334334```
335335
336336``` js src/data.js hidden
337- // Note: the way you would do data fetching depends on
338- // the framework that you use together with Suspense .
339- // Normally, the caching logic would be inside a framework .
337+ // Not: Veri çekme işlemini yapma şekliniz, birlikte kullandığınız çatıya bağlıdır
338+ // ve Suspense ile birlikte çalışır .
339+ // Normalde, önbellekleme mantığı bir çatı içinde yer alır .
340340
341341let cache = new Map ();
342342
@@ -358,7 +358,7 @@ async function getData(url) {
358358}
359359
360360async function getBio () {
361- // Add a fake delay to make waiting noticeable .
361+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
362362 await new Promise (resolve => {
363363 setTimeout (resolve, 1500 );
364364 });
@@ -370,7 +370,7 @@ async function getBio() {
370370}
371371
372372async function getAlbums () {
373- // Add a fake delay to make waiting noticeable .
373+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
374374 await new Promise (resolve => {
375375 setTimeout (resolve, 3000 );
376376 });
@@ -596,9 +596,9 @@ export default function Albums({ artistId }) {
596596```
597597
598598``` js src/data.js hidden
599- // Note: the way you would do data fetching depends on
600- // the framework that you use together with Suspense .
601- // Normally, the caching logic would be inside a framework .
599+ // Not: Veri çekme işlemini yapma şekliniz, birlikte kullandığınız framework'e bağlıdır
600+ // ve Suspense ile birlikte çalışır .
601+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
602602
603603let cache = new Map ();
604604
@@ -620,7 +620,7 @@ async function getData(url) {
620620}
621621
622622async function getBio () {
623- // Add a fake delay to make waiting noticeable .
623+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
624624 await new Promise (resolve => {
625625 setTimeout (resolve, 500 );
626626 });
@@ -632,7 +632,7 @@ async function getBio() {
632632}
633633
634634async function getAlbums () {
635- // Add a fake delay to make waiting noticeable .
635+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
636636 await new Promise (resolve => {
637637 setTimeout (resolve, 3000 );
638638 });
@@ -780,9 +780,9 @@ export default function SearchResults({ query }) {
780780```
781781
782782``` js src/data.js hidden
783- // Note: the way you would do data fetching depends on
784- // the framework that you use together with Suspense .
785- // Normally, the caching logic would be inside a framework .
783+ // Not: Veri çekme işlemi, birlikte kullandığınız framework'e bağlıdır
784+ // ve Suspense ile birlikte çalışır .
785+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
786786
787787let cache = new Map ();
788788
@@ -802,7 +802,7 @@ async function getData(url) {
802802}
803803
804804async function getSearchResults (query ) {
805- // Add a fake delay to make waiting noticeable .
805+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
806806 await new Promise (resolve => {
807807 setTimeout (resolve, 500 );
808808 });
@@ -964,9 +964,9 @@ export default function SearchResults({ query }) {
964964```
965965
966966``` js src/data.js hidden
967- // Note: the way you would do data fetching depends on
968- // the framework that you use together with Suspense .
969- // Normally, the caching logic would be inside a framework .
967+ // Not: Veri çekme işlemi, birlikte kullandığınız framework'e bağlıdır
968+ // ve Suspense ile birlikte çalışır .
969+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
970970
971971let cache = new Map ();
972972
@@ -986,7 +986,7 @@ async function getData(url) {
986986}
987987
988988async function getSearchResults (query ) {
989- // Add a fake delay to make waiting noticeable .
989+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
990990 await new Promise (resolve => {
991991 setTimeout (resolve, 500 );
992992 });
@@ -1223,9 +1223,9 @@ export default function Panel({ children }) {
12231223```
12241224
12251225``` js src/data.js hidden
1226- // Note: the way you would do data fetching depends on
1227- // the framework that you use together with Suspense .
1228- // Normally, the caching logic would be inside a framework .
1226+ // Not: Veri çekme işlemi, birlikte kullandığınız framework'e bağlıdır
1227+ // ve Suspense ile birlikte çalışır .
1228+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
12291229
12301230let cache = new Map ();
12311231
@@ -1247,7 +1247,7 @@ async function getData(url) {
12471247}
12481248
12491249async function getBio () {
1250- // Add a fake delay to make waiting noticeable .
1250+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
12511251 await new Promise (resolve => {
12521252 setTimeout (resolve, 500 );
12531253 });
@@ -1259,7 +1259,7 @@ async function getBio() {
12591259}
12601260
12611261async function getAlbums () {
1262- // Add a fake delay to make waiting noticeable .
1262+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
12631263 await new Promise (resolve => {
12641264 setTimeout (resolve, 3000 );
12651265 });
@@ -1535,9 +1535,9 @@ export default function Panel({ children }) {
15351535` ` `
15361536
15371537` ` ` js src/ data .js hidden
1538- // Note: the way you would do data fetching depends on
1539- // the framework that you use together with Suspense .
1540- // Normally, the caching logic would be inside a framework .
1538+ // Not: Veri çekme işlemi, birlikte kullandığınız framework'e bağlıdır
1539+ // ve Suspense ile birlikte çalışır .
1540+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
15411541
15421542let cache = new Map ();
15431543
@@ -1559,7 +1559,7 @@ async function getData(url) {
15591559}
15601560
15611561async function getBio () {
1562- // Add a fake delay to make waiting noticeable .
1562+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
15631563 await new Promise (resolve => {
15641564 setTimeout (resolve, 500 );
15651565 });
@@ -1571,7 +1571,7 @@ async function getBio() {
15711571}
15721572
15731573async function getAlbums () {
1574- // Add a fake delay to make waiting noticeable .
1574+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
15751575 await new Promise (resolve => {
15761576 setTimeout (resolve, 3000 );
15771577 });
@@ -1846,9 +1846,9 @@ export default function Panel({ children }) {
18461846` ` `
18471847
18481848` ` ` js src/ data .js hidden
1849- // Note: the way you would do data fetching depends on
1850- // the framework that you use together with Suspense .
1851- // Normally, the caching logic would be inside a framework .
1849+ // Not: Veri çekme işlemi, birlikte kullandığınız framework'e bağlıdır
1850+ // ve Suspense ile birlikte çalışır .
1851+ // Normalde, önbellekleme mantığı bir framework içinde yer alır .
18521852
18531853let cache = new Map ();
18541854
@@ -1870,7 +1870,7 @@ async function getData(url) {
18701870}
18711871
18721872async function getBio () {
1873- // Add a fake delay to make waiting noticeable .
1873+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
18741874 await new Promise (resolve => {
18751875 setTimeout (resolve, 500 );
18761876 });
@@ -1882,7 +1882,7 @@ async function getBio() {
18821882}
18831883
18841884async function getAlbums () {
1885- // Add a fake delay to make waiting noticeable .
1885+ // Beklemeyi fark edilebilir hale getirmek için sahte bir gecikme ekleyin .
18861886 await new Promise (resolve => {
18871887 setTimeout (resolve, 3000 );
18881888 });
0 commit comments