Jayden Seric 919c1d7a50 Update dependencies.
Includes prettier v2 lint fixes.
2020-03-30 13:00:27 +11:00

11 lines
182 B
JavaScript

export const Section = (props) => (
<>
<section {...props} />
<style jsx>{`
section {
margin: calc(var(--daui-spacing) * 2) 0;
}
`}</style>
</>
)