Add per page styling

This commit is contained in:
2018-03-13 05:22:24 +11:00
parent a51984abb7
commit 63ca25d153

View File

@ -17,8 +17,11 @@ class Page extends React.Component {
} }
render() { render() {
let clazz = "c-page";
if(this.props.className) clazz += " " + this.props.className;
return ( return (
<main className="c-page"> <main className={clazz}>
{this.props.children} {this.props.children}
</main> </main>
) )