react-cli/components/Box.js
2019-11-18 13:49:59 -05:00

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