2017-07-08 19:11:06 +10:00

15 lines
223 B
JavaScript

const Section = ({ heading, children }) =>
<section>
<h2>
{heading}
</h2>
{children}
<style jsx>{`
section {
padding: 1em 0;
}
`}</style>
</section>
export default Section