1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-12-01 21:42:08 +03:00
mdx-deck/docs/Layout.js
2018-07-29 17:09:25 -04:00

21 lines
365 B
JavaScript

import React from 'react'
import Box from 'superbox'
export default ({ children }) =>
<Box
p={4}
bg='link'
css={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '100vw',
height: '100vh',
'& a': {
fontWeight: 'bold',
color: 'inherit'
}
}}>
{children}
</Box>