:D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/docs/docs/02.1-jsx-in-depth.md b/docs/docs/02.1-jsx-in-depth.md | |
index c395f36..8397e50 100644 | |
--- a/docs/docs/02.1-jsx-in-depth.md | |
+++ b/docs/docs/02.1-jsx-in-depth.md | |
@@ -82,10 +82,7 @@ var Nav = React.createClass({ }); | |
var Nav = React.createClass({displayName: "Nav", }); | |
``` | |
-Use the [Babel REPL](https://babeljs.io/repl/) to try out JSX and see how it | |
-desugars into native JavaScript, and the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// Susy (v2.2.5) | |
// ---- | |
@import "susy"; | |
/** | |
* placeholder w/media query 예제 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/docs/docs/02.1-jsx-in-depth.md b/docs/docs/02.1-jsx-in-depth.md | |
index 224b8cb..7669ada 100644 | |
--- a/docs/docs/02.1-jsx-in-depth.md | |
+++ b/docs/docs/02.1-jsx-in-depth.md | |
@@ -73,6 +73,15 @@ var app = React.createElement( | |
); | |
``` | |
+JSX will infer the class's [displayName](/react/docs/component-specs.html#displayName) from the variable assignment when the displayName is undefined: | |
+ |