0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 20:52:40 +00:00

setup test file with phantomjs, no luck though

This commit is contained in:
Scott
2016-01-12 12:50:34 -08:00
committed by Scott Tolksdorf
parent db5d12992a
commit a193bccc86
10 changed files with 415 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
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;