We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 438c897 commit 613cb37Copy full SHA for 613cb37
src/React.Sample.Owin/Content/Index.html
@@ -12,7 +12,7 @@
12
<script src="https://fb.me/react-dom-0.14.0.min.js"></script>
13
<script type="text/javascript" src="Sample.jsx"></script>
14
<script type="text/javascript">
15
- React.render(
+ ReactDOM.render(
16
React.createElement(CommentsBox),
17
document.getElementById('container')
18
);
src/React.Sample.Owin/Content/Sample.jsx
@@ -7,7 +7,7 @@
7
* of patent rights can be found in the PATENTS file in the same directory.
8
*/
9
10
-CommentsBox = React.createClass({
+var CommentsBox = React.createClass({
11
propTypes: {
initialComments: React.PropTypes.array.isRequired
},
0 commit comments