Skip to content

Commit 4ea8b0f

Browse files
committed
Add highlight to changed line
1 parent dd49145 commit 4ea8b0f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/content/1/en/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ const App = () => {
10831083

10841084
return (
10851085
<div>
1086-
<Display value={value} />
1086+
<Display value={value} /> // highlight-line
10871087
<Button handleClick={() => setToValue(1000)} text="thousand" />
10881088
<Button handleClick={() => setToValue(0)} text="reset" />
10891089
<Button handleClick={() => setToValue(value + 1)} text="increment" />

src/content/1/es/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ const App = () => {
10661066

10671067
return (
10681068
<div>
1069-
<Display value={value} />
1069+
<Display value={value} /> // highlight-line
10701070
<Button handleClick={() => setToValue(1000)} text="thousand" />
10711071
<Button handleClick={() => setToValue(0)} text="reset" />
10721072
<Button handleClick={() => setToValue(value + 1)} text="increment" />

src/content/1/fi/osa1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ const App = (props) => {
10751075

10761076
return (
10771077
<div>
1078-
<Display value={value} />
1078+
<Display value={value} /> // highlight-line
10791079
<Button handleClick={() => setToValue(1000)} text="thousand" />
10801080
<Button handleClick={() => setToValue(0)} text="reset" />
10811081
<Button handleClick={() => setToValue(value + 1)} text="increment" />

src/content/1/fr/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ const App = () => {
966966

967967
return (
968968
<div>
969-
<Display value={value} />
969+
<Display value={value} /> // highlight-line
970970
<Button handleClick={() => setToValue(1000)} text="thousand" />
971971
<Button handleClick={() => setToValue(0)} text="reset" />
972972
<Button handleClick={() => setToValue(value + 1)} text="increment" />

src/content/1/ptbr/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ const App = () => {
10521052

10531053
return (
10541054
<div>
1055-
<Exibir valor={valor} />
1055+
<Exibir valor={valor} /> // highlight-line
10561056
<Botao handleClique={() => setNoValor(1000)} texto="mil" />
10571057
<Botao handleClique={() => setNoValor(0)} texto="zerar" />
10581058
<Botao handleClique={() => setNoValor(valor + 1)} texto="incrementar" />

src/content/1/zh/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ const App = () => {
11391139

11401140
return (
11411141
<div>
1142-
<Display value={value} />
1142+
<Display value={value} /> // highlight-line
11431143
<Button handleClick={() => setToValue(1000)} text="thousand" />
11441144
<Button handleClick={() => setToValue(0)} text="reset" />
11451145
<Button handleClick={() => setToValue(value + 1)} text="increment" />

0 commit comments

Comments
 (0)