import classNames from 'classnames' import PropTypes from 'prop-types' import React from 'react' import './ContentSection.sass' const ContentSection = ({ name, title, children }) => (

{title}

{children}
) ContentSection.propTypes = { name: PropTypes.string.isRequired, } export default ContentSection