import React, { FC } from 'react'; import { Box, Text } from 'ink'; export const TextBox:FC = ({ children }) => { return ( { children } ) } export default TextBox;