Skip to content

Commit ec71cbf

Browse files
committed
chore: keep original haiku
1 parent 8eb9703 commit ec71cbf

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

beta/src/content/learn/rendering-lists.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,11 +1151,11 @@ export const recipes = [
11511151

11521152
```js
11531153
<article>
1154-
<p>我写,擦除,重写</p>
1154+
<p>I write, erase, rewrite</p>
11551155
<hr />
1156-
<p>再次擦除</p>
1156+
<p>Erase again, and then</p>
11571157
<hr />
1158-
<p>然后罂粟盛开</p>
1158+
<p>A poppy blooms.</p>
11591159
</article>
11601160
```
11611161

@@ -1166,9 +1166,9 @@ export const recipes = [
11661166
```js
11671167
const poem = {
11681168
lines: [
1169-
'我写,擦除,重写',
1170-
'再次擦除',
1171-
'然后罂粟盛开'
1169+
'I write, erase, rewrite',
1170+
'Erase again, and then',
1171+
'A poppy blooms.'
11721172
]
11731173
};
11741174

@@ -1219,9 +1219,9 @@ hr {
12191219
```js
12201220
const poem = {
12211221
lines: [
1222-
'我写,擦除,重写',
1223-
'再次擦除',
1224-
'然后罂粟盛开'
1222+
'I write, erase, rewrite',
1223+
'Erase again, and then',
1224+
'A poppy blooms.'
12251225
]
12261226
};
12271227

@@ -1278,9 +1278,9 @@ import React, { Fragment } from 'react';
12781278

12791279
const poem = {
12801280
lines: [
1281-
'我写,擦除,重写',
1282-
'再次擦除',
1283-
'然后罂粟盛开'
1281+
'I write, erase, rewrite',
1282+
'Erase again, and then',
1283+
'A poppy blooms.'
12841284
]
12851285
};
12861286

0 commit comments

Comments
 (0)