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