mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
import React from "react";
|
|
import AceEditorInput from "@/components/AceEditorInput";
|
|
|
|
export default function AceEditorField({ form, field, ...otherProps }) {
|
|
return <AceEditorInput {...otherProps} />;
|
|
}
|