Added Redux support

This commit is contained in:
Dom Masters
2018-05-07 07:12:31 +10:00
parent 79dcf7f376
commit 9e94ad1599
13 changed files with 219 additions and 25 deletions

View File

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