From 01edb00dd82bddd487ceb494b831956ab4ce3556 Mon Sep 17 00:00:00 2001 From: tinywaves Date: Tue, 7 May 2024 19:54:56 +0800 Subject: [PATCH] chore: unify data desc in `learn/rendering-lists` --- src/content/learn/rendering-lists.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/content/learn/rendering-lists.md b/src/content/learn/rendering-lists.md index 6e024557b0..2e2b951d1a 100644 --- a/src/content/learn/rendering-lists.md +++ b/src/content/learn/rendering-lists.md @@ -105,24 +105,24 @@ Warning: Each child in a list should have a unique "key" prop. ```js const people = [{ id: 0, - name: 'Creola Katherine Johnson', - profession: 'mathematician', + name: '凯瑟琳·约翰逊', + profession: '数学家', }, { id: 1, - name: 'Mario José Molina-Pasquel Henríquez', - profession: 'chemist', + name: '马里奥·莫利纳', + profession: '化学家', }, { id: 2, - name: 'Mohammad Abdus Salam', - profession: 'physicist', + name: '穆罕默德·阿卜杜勒·萨拉姆', + profession: '物理学家', }, { id: 3, - name: 'Percy Lavon Julian', - profession: 'chemist', + name: '珀西·莱温·朱利亚', + profession: '化学家', }, { id: 4, - name: 'Subrahmanyan Chandrasekhar', - profession: 'astrophysicist', + name: '苏布拉马尼扬·钱德拉塞卡', + profession: '天体物理学家', }]; ```