mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04: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} />;
|
|
}
|