Skip to content

Commit 145e7ae

Browse files
authored
Merge pull request #169 from reactjs/sync-8b30ae43
Sync with reactjs.org @ 8b30ae4
2 parents 1f71710 + c93ff3e commit 145e7ae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

content/community/tools-debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ layout: community
55
permalink: community/debugging-tools.html
66
---
77

8-
* **[React Developer Tools](https://github.com/facebook/react-devtools):** an extension available for [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi), [Firefox](https://addons.mozilla.org/firefox/addon/react-devtools/), and as a [standalone app](https://github.com/facebook/react-devtools/tree/master/packages/react-devtools) that allows you to inspect the React component hierarchy in the Chrome Developer Tools.
8+
* **[React Developer Tools](https://github.com/facebook/react-devtools):** an extension available for [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi), [Firefox](https://addons.mozilla.org/firefox/addon/react-devtools/), and as a [standalone app](https://github.com/facebook/react/tree/master/packages/react-devtools) that allows you to inspect the React component hierarchy in the Chrome Developer Tools.

content/docs/optimizing-performance.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Webpack v4 이상에서는 프로덕션 모드에서 기본적으로 코드를
145145
const TerserPlugin = require('terser-webpack-plugin');
146146

147147
module.exports = {
148-
mode: 'production'
148+
mode: 'production',
149149
optimization: {
150150
minimizer: [new TerserPlugin({ /* additional options here */ })],
151151
},

content/footerNav.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ more:
2020
channels:
2121
title: 채널
2222
items:
23-
- title: Github
23+
- title: GitHub
2424
to: https://github.com/facebook/react
2525
external: true
2626
- title: Stack Overflow

content/tutorial/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ Square의 `render` 함수 내부에서 `onClick` 핸들러를 통해 `this.setSt
337337

338338
React DevTools를 통해 React 컴포넌트의 props와 state도 확인할 수 있습니다.
339339

340-
React DevTools를 설치한 후에 페이지의 모든 엘리먼트에 오른쪽 클릭을 하고 "요소 검사"를 클릭하여 개발자 도구를 열면 탭의 오른쪽 끝에 React 탭을 확인하실 수 있습니다.
340+
React DevTools를 설치한 후에 페이지의 모든 엘리먼트에 오른쪽 클릭을 하고 "요소 검사"를 클릭하여 개발자 도구를 열면 탭의 오른쪽 끝에 React 탭("⚛️ Components"와 "⚛️ Profiler")을 확인하실 수 있습니다. 컴포넌트 트리를 검사하고 싶다면 "⚛️ Components"를 사용해주세요.
341341

342342
**그러나 CodePen에서 도구를 사용하기 위해선 몇 가지 단계가 추가로 필요합니다.**
343343

0 commit comments

Comments
 (0)