import * as React from 'react' import { TextAreaInput } from '../../../Input' import { Item } from '../../../../types' export const PopupTextAreaInput = ({ dataField, placeholder, style, item }: { dataField: string, placeholder: string, style?: string, item?: Item }) => { return ( ) }