Added video section

This commit is contained in:
Dom Masters
2018-05-07 08:25:41 +10:00
parent 135dc5e5f0
commit 3733b53ce4
12 changed files with 111 additions and 28 deletions

View File

@ -30,7 +30,11 @@ class Section extends React.Component {
render() {
return (
<section className={"c-section" + (this.props.full?" c-section--full":"") }>
<section className={
"c-section" +
(this.props.full?" c-section--full":"") +
(this.props.className ? " "+this.props.className : "")
}>
{ this.props.children }
</section>
);