Skip to content

Instantly share code, notes, and snippets.

@RyanAtViceSoftware
Last active May 29, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RyanAtViceSoftware/a9db147c37422935a556 to your computer and use it in GitHub Desktop.
Save RyanAtViceSoftware/a9db147c37422935a556 to your computer and use it in GitHub Desktop.
Hello React - props - how to parameterize a component by using props. . JsFiddle: http://jsfiddle.net/gh/gist/library/pure/a9db147c37422935a556/
<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>
<div>Hello React</div>
<div>{this.props.message}</div>
</div>
);
}
});
ReactDOM.render(
<HelloReact message='Message from props'/>,
document.getElementById('view'));
name: ReactJs example by Ryan Vice - www.ViceSoftware.com
description: Hello React - props - how to parameterize a component by using props
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