Browse Source

Update integrations-react.adoc

tags/v1.4.0
Sauli Tähkäpää 7 years ago
parent
commit
363c19cd62
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      docs/integrations/integrations-react.adoc

+ 2
- 2
docs/integrations/integrations-react.adoc View File

@@ -38,7 +38,7 @@ The code below can be run and forked as a JSFiddle at https://jsfiddle.net/pw1nL
var UserGrid = React.createClass({
render: function(){
return (
<vaadin-grid></vaadin-grid>
'<vaadin-grid></vaadin-grid>';
)
},

@@ -116,6 +116,6 @@ var UserApp = React.createClass({
});

HTMLImports.whenReady(function(){
ReactDOM.render(<UserApp></UserApp>, document.getElementById('container'));
ReactDOM.render('<UserApp></UserApp>', document.getElementById('container'));
});
----

Loading…
Cancel
Save