Skip to content

Commit 697c74f

Browse files
committed
Correct text inside component
1 parent e4ff88b commit 697c74f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

07/hello-react/src/LifeCycleSample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class LifeCycleSample extends Component {
4242
componentDidUpdate(prevProps, prevState, snapshot) {
4343
console.log('componentDidUpdate', prevProps, prevState);
4444
if (snapshot) {
45-
console.log('업데이트 되기 직전 색상: ', snapshot);
45+
console.log('업데이트되기 직전 색상: ', snapshot);
4646
}
4747
}
4848
render() {

07/hello-react/yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7832,7 +7832,7 @@ react-dev-utils@^9.0.0:
78327832
strip-ansi "5.2.0"
78337833
text-table "0.2.0"
78347834

7835-
7835+
react-dom@^16.8.6:
78367836
version "16.8.6"
78377837
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f"
78387838
integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA==
@@ -7910,7 +7910,7 @@ [email protected]:
79107910
optionalDependencies:
79117911
fsevents "2.0.6"
79127912

7913-
7913+
react@^16.8.6:
79147914
version "16.8.6"
79157915
resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
79167916
integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==

10/todo-app/src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ const App = () => {
1212
},
1313
{
1414
id: 2,
15-
text: '컴포넌트 스타일링 해보기',
15+
text: '컴포넌트 스타일링해 보기',
1616
checked: true,
1717
},
1818
{
1919
id: 3,
20-
text: '일정 관리 앱 만들어보기',
20+
text: '일정 관리 앱 만들어 보기',
2121
checked: false,
2222
},
2323
]);

13/router-tutorial/src/Profiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Profiles = () => {
99
};
1010
return (
1111
<div>
12-
<h3>유저 목록:</h3>
12+
<h3>사용자 목록:</h3>
1313
<ul>
1414
<li>
1515
<NavLink activeStyle={activeStyle} to="/profiles/velopert" active>

14/news-viewer/src/components/Categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const categories = [
99
},
1010
{
1111
name: 'business',
12-
text: '비지니스',
12+
text: '비즈니스',
1313
},
1414
{
1515
name: 'entertainment',

18/learn-middleware/src/components/Sample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Sample = ({ post, users, loadingPost, loadingUsers }) => {
1515
</section>
1616
<hr />
1717
<section>
18-
<h1>유저 목록</h1>
18+
<h1>사용자 목록</h1>
1919
{loadingUsers && '로딩중...'}
2020
{!loadingUsers && users && (
2121
<ul>

18/learn-middleware/src/modules/counter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function* increaseSaga() {
1616
yield delay(1000); // 1초를 기다립니다.
1717
yield put(increase()); // 특정 액션을 디스패치 합니다.
1818
const number = yield select(state => state.counter);
19-
console.log(`현재 값은 ${number} 입니다.`);
19+
console.log(`현재 값은 ${number}입니다.`);
2020
}
2121

2222
function* decreaseSaga() {

0 commit comments

Comments
 (0)