diff --git a/src/Explorer/Controls/Editor/QueryEditor.tsx b/src/Explorer/Controls/Editor/QueryEditor.tsx deleted file mode 100644 index d43537fd4..000000000 --- a/src/Explorer/Controls/Editor/QueryEditor.tsx +++ /dev/null @@ -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 = (props) => { -}