Sha256: 27a1b07d49d6c134dd2f68bfe86db3580461faaabc545295018377db030035ae
Contents?: true
Size: 403 Bytes
Versions: 47
Compression:
Stored size: 403 Bytes
Contents
const UILayoutSection = ({ children, secondary }) => { const className = classNames({ 'ui-layout__section': true, 'ui-layout__section--primary': !secondary, 'ui-layout__section--secondary': secondary }); return ( <div className={className}> {children} </div> ); }; UILayoutSection.propTypes = { children: React.PropTypes.node, secondary: React.PropTypes.bool };
Version data entries
47 entries across 47 versions & 1 rubygems