Skip to content

Instantly share code, notes, and snippets.

@RyanAtViceSoftware
Last active December 10, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanAtViceSoftware/bda749025dff22cae766 to your computer and use it in GitHub Desktop.
Save RyanAtViceSoftware/bda749025dff22cae766 to your computer and use it in GitHub Desktop.
Hello React Render Method - broken - use parentheses allow for better formatting. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/bda749025dff22cae766/
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>
var HelloReact = React.createClass({
render: function() {
return
<div> // error: doesn't work because on next line
<div>Hello React</div>
<div>How are you?</div>;
</div>
}
});
ReactDOM.render(<HelloReact/>, document.getElementById('view'));
name: ReactJs example by Ryan Vice - www.ViceSoftware.com
description: Hello React Render Method - broken - use parentheses allow for better formatting.
authors:
- Ryan Vice
resources:
normalize_css: no
wrap: h
panel_js: 3
panel_css: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment