/* * Poly * Poly styled section. * * Dependencies: * styles/components/_section--style-split.scss * * Version: * 1.0.0 - 2018/03/11 */ import React from 'react'; import Section from './../Section'; const SplitSectionSection = function(props) { let clazz = "c-section--style-split__split-part"; if(typeof props.className !== typeof undefined) clazz += " " + props.className; return (
{props.children}
); } class SplitSection extends React.Component { constructor(props) { super(props); } render() { return (
{this.props.left} {this.props.right}
); } } export default SplitSection;