import React from "react"; export function TextInput(props) { return ( <>
{props.error && props.touched ? (
{props.error}
) : null} ); } export function TextareaInput(props) { return ( <>