15 lines
224 B
JavaScript
15 lines
224 B
JavaScript
|
import React from 'react'
|
||
|
|
||
|
const Center = ({children}) => (
|
||
|
<div style={{
|
||
|
position: 'absolute',
|
||
|
top: '50%',
|
||
|
left: '50%',
|
||
|
transform: 'translate(-50%)',
|
||
|
}}>
|
||
|
{children}
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
export default Center
|