import {Field} from "react-final-form"; import React from "react"; import Error from "./Error"; import {classNames} from "../../styles/utils"; interface Props { name: string; label?: string; placeholder?: string; className?: string; required?: boolean; } const TextAreaWide: React.FC = ({name, label, placeholder, required, className}) => (
(