File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 27
27
}
28
28
```
29
29
30
- ### pg.32 [ (Issue #11 )] ( https://github.com/velopert/learning-react/issues/11 )
31
- - 3번째 줄
32
-
33
- 수정 전: 요소 개수가 ** 몇 백 개, 몇 천 개 단위로 많다면**
34
-
35
- 수정 후: 요소 개수가 ** 몇백 개, 몇천 개** 단위로 많다면
36
30
37
31
### pg.34 [ (Issue #11 )] ( https://github.com/velopert/learning-react/issues/11 )
38
32
- 2번째 줄
@@ -76,7 +70,7 @@ $ yarn start
76
70
77
71
수정 후: ` <MyComponent name="react"/> `
78
72
79
- ### pg.81 [ (Issue #14 )] ( https://github.com/velopert/learning-react/issues/14 )
73
+ ### pg.91 [ (Issue #14 )] ( https://github.com/velopert/learning-react/issues/14 )
80
74
수정 전: ** 3.4.4** 절에서 작성한 버튼 코드를 다시 한 번 살펴봅시다
81
75
82
76
수정 후: ** 3.3.4** 절에서 작성한 버튼 코드를 다시 한 번 살펴봅시다
@@ -207,15 +201,15 @@ VSCode 설정에서
207
201
208
202
수정 전: ` MONGO_URI=mongodb://localhost/blog `
209
203
210
- 수정 후: ` MONGO_URI=mongodb://localost :27017/blog `
204
+ 수정 후: ` MONGO_URI=mongodb://localhost :27017/blog `
211
205
212
206
### pg. 446
213
207
- src/index.js 코드 8번째 줄
214
208
- mongoose 버전 업데이트로 인하여 useNewUrlParser 옵션 추가
215
209
216
- 수정 전: ` mongoose.connect(mongoURI); `
210
+ 수정 전: ` mongoose.connect(mongoURI).then(...) `
217
211
218
- 수정 후: ` mongoose.connect(mongoURI, { useNewUrlParser: true }); `
212
+ 수정 후: ` mongoose.connect(mongoURI, { useNewUrlParser: true }).then(...) `
219
213
220
214
### pg.575 ([ Issue #1 ] ( https://github.com/velopert/learning-react/issues/1 ) ) ✅
221
215
- 맨 마지막 줄
You can’t perform that action at this time.
0 commit comments