remove QueryEditor component

This commit is contained in:
Ashley Stanton-Nurse 2024-03-29 11:47:45 -07:00
parent 8b6d857ddb
commit 08d3318a87
1 changed files with 0 additions and 15 deletions

View File

@ -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) => {
}