Remove app-specific menu items

This commit is contained in:
Gregory Schier
2023-11-21 19:18:40 -08:00
parent 5560593aaa
commit c7798092d8
5 changed files with 69 additions and 54 deletions

View File

@@ -5,6 +5,12 @@ export type { EditorProps } from './Editor';
// showing any content
// const editor = await import('./Editor');
document.addEventListener('keydown', (e) => {
console.log('E', e.key);
e.preventDefault();
e.stopPropagation();
});
export const Editor = editor.Editor;
export const graphql = editor.graphql;
export const getIntrospectionQuery = editor.getIntrospectionQuery;