0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 12:12:42 +00:00
This commit is contained in:
Trevor Buckner
2023-11-24 01:36:04 -05:00
parent ede731e3a5
commit 045fbbe158

View File

@@ -25,12 +25,12 @@ const BrewPage = createClass({
return { return {
contents : '', contents : '',
index : 0 index : 0
} };
}, },
render : function() { render : function() {
return <div className='page' id={`p${this.props.index + 1}`} > return <div className='page' id={`p${this.props.index + 1}`} >
<div className='columnWrapper' dangerouslySetInnerHTML={{ __html: this.props.contents }} /> <div className='columnWrapper' dangerouslySetInnerHTML={{ __html: this.props.contents }} />
</div> </div>;
} }
}); });