mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-12-01 21:42:08 +03:00
21 lines
365 B
JavaScript
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>
|