This component was inspired by Formik and the jokes demo from Remix. This is just an experiment it's not meant for production use (yet).
interface FormActionData {
fieldErrors?: Record<string, string>;
fields?: Record<string, string>;
}
interface Field {
name: string;