We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The server-side render is good, while it still render the old style initialization usage, like this:
React.render( HelloWorld({"name":"Daniel"}), // <----------- HelloWorld is a component document.getElementById("react1") );
But, this has been deprecated, as mentioned in this post. The better way could be:
React.render( React.createElement('HelloWorld', {"name":"Daniel"}, null), // <---------- new style document.getElementById('react1') );
Please update to use the factory pattern to initialize component.
The text was updated successfully, but these errors were encountered:
Good catch! Thanks for reporting. I'll fix this tomorrow.
Sorry, something went wrong.
106d66b
This is now fixed and you can use the development build of the NuGet packages (http://reactjs.net/getting-started/download.html#development-builds) to test out the changes before a stable release. Thanks for reporting!
No branches or pull requests
Hi,
The server-side render is good, while it still render the old style initialization usage, like this:
But, this has been deprecated, as mentioned in this post. The better way could be:
Please update to use the factory pattern to initialize component.
The text was updated successfully, but these errors were encountered: