Files
redash/client/app/components/dynamic-form/fields/AceEditorField.jsx
2020-08-25 14:24:15 -03:00

7 lines
206 B
JavaScript

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