remove QueryEditor component
This commit is contained in:
parent
8b6d857ddb
commit
08d3318a87
|
@ -1,15 +0,0 @@
|
||||||
import React from "react";
|
|
||||||
|
|
||||||
export type QueryEditorProps = {
|
|
||||||
content: string
|
|
||||||
onContentChanged: (newContent: string) => void;
|
|
||||||
onContentSelected: (selectedContent: string) => void;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Callback that will run when the "Execute Query" command is invoked.
|
|
||||||
*/
|
|
||||||
onExecuteQuery: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const QueryEditor: React.FunctionComponent<QueryEditorProps> = (props) => {
|
|
||||||
}
|
|
Loading…
Reference in New Issue