0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-01 02:02:43 +00:00
Files
homebrewery/client/homebrew/phb/phbPage/phbPage.jsx

15 lines
275 B
JavaScript

var React = require('react');
var PhbPage = React.createClass({
getDefaultProps: function() {
return {
content : ""
};
},
render : function(){
return <div className='phb' dangerouslySetInnerHTML={{__html:this.props.content}} />
}
});
module.exports = PhbPage;