import React from 'react'; import PropType from 'prop-types'; const Section = ({ children, className }) => (
{children}
); Section.propTypes = { children: PropType.node, className: PropType.string, }; export default Section;