Skip to content

Commit

Permalink
Merge pull request reactjs#94 from reactjs/sync-8b30ae43
Browse files Browse the repository at this point in the history
Sync with reactjs.org @ 8b30ae4
  • Loading branch information
Zorig committed Sep 11, 2019
2 parents 66a9ffc + c5e47ea commit 7e5f65a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/community/tools-debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ layout: community
permalink: community/debugging-tools.html
---

* **[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.
* **[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.
2 changes: 1 addition & 1 deletion content/docs/optimizing-performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Webpack v4+ will minify your code by default in production mode.
const TerserPlugin = require('terser-webpack-plugin');

module.exports = {
mode: 'production'
mode: 'production',
optimization: {
minimizer: [new TerserPlugin({ /* additional options here */ })],
},
Expand Down
2 changes: 1 addition & 1 deletion content/footerNav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ more:
channels:
title: Channels
items:
- title: Github
- title: GitHub
to: https://github.com/facebook/react
external: true
- title: Stack Overflow
Expand Down
2 changes: 1 addition & 1 deletion content/tutorial/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ Square-ийн `render` метод дотор `onClick` handler -с `this.setStat

React DevTools-ээр мөн React компонентын props болон state-г харж болно.

React DevTools суулгасны дараа хуудасны дурын элемент дээр right-click хийн "Inspect" дээр даран хөгжүүлэгчийн хэрэгслийг нээх бөгөөд React тааб хамгийн баруун талд гарч ирсэн байх болно.
React DevTools суулгасны дараа хуудасны дурын элемент дээр right-click хийн "Inspect" дээр даран хөгжүүлэгчийн хэрэгслийг нээх бөгөөд React тааб ("⚛️ Components" and "⚛️ Profiler") хамгийн баруун талд гарч ирсэн байх болно. "⚛️ Components" ашиглан компонент мод бүтцийг шинжилж болно.

**Гэхдээ CodePen дээр үүнийг ажиллуулахын тулд нэмж хэдэн зүйл хийх хэрэгтэй:**

Expand Down
2 changes: 1 addition & 1 deletion src/components/LayoutFooter/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
);
})}
</FooterNav>
<FooterNav>
<FooterNav layoutHasSidebar={layoutHasSidebar}>
<MetaTitle onDark={true}>{navFooter.channels.title}</MetaTitle>
<SectionLinks links={navFooter.channels.items} />
</FooterNav>
Expand Down

0 comments on commit 7e5f65a

Please sign in to comment.