21 lines
301 B
JavaScript
21 lines
301 B
JavaScript
import React from 'react'
|
|
|
|
const Box = props => {
|
|
const { text } = props
|
|
|
|
return (
|
|
<box
|
|
top="center"
|
|
left="center"
|
|
width="50%"
|
|
height="50%"
|
|
border={{ type: 'line' }}
|
|
style={{ border: { fg: 'blue' } }}
|
|
>
|
|
{text}
|
|
</box>
|
|
)
|
|
}
|
|
|
|
export default Box
|