import React from 'react'; import TextareaBox from '../TextareaBox'; import Typography from '../Typography'; import { ContentWrapper } from './styled'; type Props = { t: (key: string) => string; onChange: (value: string) => void; value?: string; }; const TextBox: React.FC = ({ t, onChange, value, }: Props): React.ReactElement => ( <> {t('text')} ); TextBox.defaultProps = { value: '', }; export default TextBox;