import React from 'react'; import PropTypes from 'prop-types'; import { FullWidthRow } from '../../../helperComponents'; const propTypes = { children: PropTypes.oneOfType([ PropTypes.string, PropTypes.element, PropTypes.node ]) }; function SectionHeader({ children }) { return (

{ children }


); } SectionHeader.displayName = 'SectionHeader'; SectionHeader.propTypes = propTypes; export default SectionHeader;