client/app/components/dynamic-form/fields/AceEditorField.jsx (5 lines of code) (raw):

import React from "react"; import AceEditorInput from "@/components/AceEditorInput"; export default function AceEditorField({ form, field, ...otherProps }) { return <AceEditorInput {...otherProps} />; }