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

21 lines
365 B
JavaScript
Raw Normal View History

2018-07-29 01:32:05 +03:00
import React from 'react'
2018-07-29 01:36:00 +03:00
import Box from 'superbox'
export default ({ children }) =>
2018-07-29 19:11:24 +03:00
<Box
p={4}
2018-07-30 00:09:25 +03:00
bg='link'
2018-07-29 19:11:24 +03:00
css={{
2018-07-30 00:09:25 +03:00
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '100vw',
height: '100vh',
'& a': {
fontWeight: 'bold',
color: 'inherit'
}
2018-07-29 19:11:24 +03:00
}}>
2018-07-29 01:36:00 +03:00
{children}
</Box>