import classNames from "classnames"; import PropTypes from "prop-types"; import React from "react"; import "./ContentSection.css"; const ContentSection = ({name, children}) => (
{children}
); ContentSection.propTypes = { name: PropTypes.string.isRequired, }; export default ContentSection;