import Link from 'next/link'; import { string, element } from 'prop-types'; const Section = ({ title, href, children }) => (

{ href && ( { title } ) } { !href && title }

{ children }
); Section.propTypes = { title: string, href: string, children: element.isRequired }; export default Section;