var Hello = React.createClass({ displayName: 'Hello', render: function() { return
Hello {this.props.name}
; // $ threatModelSource=view-component-input }, getDefaultProps: function() { return { name: 'world' // $ getACandidatePropsValue }; } }); // $ reactComponent Hello.info = function() { return "Nothing to see here."; }; var createReactClass = require('create-react-class'); var Greeting = createReactClass({ render: function() { return

Hello, {this.props.name}

; // $ threatModelSource=view-component-input } }); // $ reactComponent