aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli.tahkapaa@outlook.com>2016-12-22 11:46:54 +0200
committerGitHub <noreply@github.com>2016-12-22 11:46:54 +0200
commit363c19cd622a9067263e97bc7a2648f478b73651 (patch)
tree37c25a653d071e2b52e711570f80f9aa5b3d67d2
parent046d2c87b3f970d5a6aa974f8d6476cdd2052e07 (diff)
downloadvaadin-core-363c19cd622a9067263e97bc7a2648f478b73651.tar.gz
vaadin-core-363c19cd622a9067263e97bc7a2648f478b73651.zip
Update integrations-react.adoc
-rw-r--r--docs/integrations/integrations-react.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/integrations/integrations-react.adoc b/docs/integrations/integrations-react.adoc
index 6eb4a4f..d312296 100644
--- a/docs/integrations/integrations-react.adoc
+++ b/docs/integrations/integrations-react.adoc
@@ -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'));
});
----