var React = require('react') var MarkdownLib = require('react-markdown') module.exports = React.createClass({ renderIfApplicable: function(){ if(this.props.source) return return

...

}, render: function(){ return this.renderIfApplicable() } })