import React from 'react';
import 'twin.macro';
import { ErrorMessage, Field } from 'formik';
export interface FormTextInputProps {
name: string,
placeholder?: string,
maxLength?: number,
autoFocus?: boolean
}
export default function FormTextInput({
name,
placeholder,
maxLength,
autoFocus,
}: FormTextInputProps) {
return (
<>
>
);
}