Skip to content

Commit 613cb37

Browse files
committed
Fix OWIN example
1 parent 438c897 commit 613cb37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/React.Sample.Owin/Content/Index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script src="https://fb.me/react-dom-0.14.0.min.js"></script>
1313
<script type="text/javascript" src="Sample.jsx"></script>
1414
<script type="text/javascript">
15-
React.render(
15+
ReactDOM.render(
1616
React.createElement(CommentsBox),
1717
document.getElementById('container')
1818
);

Diff for: src/React.Sample.Owin/Content/Sample.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

10-
CommentsBox = React.createClass({
10+
var CommentsBox = React.createClass({
1111
propTypes: {
1212
initialComments: React.PropTypes.array.isRequired
1313
},

0 commit comments

Comments
 (0)