15 lines
223 B
JavaScript
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
|