UNPKG

gatsby-theme-docz

Version:

Gatsby theme created to use Docz

13 lines (10 loc) 252 B
/** @jsx jsx */ import { jsx, Container } from 'theme-ui' import * as styles from './styles' export const MainContainer = ({ children, ...rest }) => { return ( <Container sx={styles.container} {...rest}> {children} </Container> ) }