From 08d3318a87e0e83bf6ef3ae84aa3b9ecac1779ad Mon Sep 17 00:00:00 2001 From: Ashley Stanton-Nurse Date: Fri, 29 Mar 2024 11:47:45 -0700 Subject: [PATCH] remove QueryEditor component --- src/Explorer/Controls/Editor/QueryEditor.tsx | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/Explorer/Controls/Editor/QueryEditor.tsx 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) => { -}