Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / _components / common / Content.js
206 bytesRaw
1 | // Packages |
2 | import React from 'react'; |
3 | import css from 'next/css'; |
4 | |
5 | export default ({children}) => ( |
6 | <section className={style}> |
7 | {children} |
8 | </section> |
9 | ); |
10 | |
11 | const style = css({ |
12 | margin: '30px 0' |
13 | }); |
14 |
Built with git-ssb-web