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