19 lines
580 B
JavaScript
19 lines
580 B
JavaScript
import { AppShell } from "./app_shell.js";
|
|
import { SidebarInteractions } from "./sidebar_interactions.js";
|
|
import { SettingsSectionScroll, TagsSectionScroll } from "./section_scroll.js";
|
|
import { ChatSurface } from "./chat_surface.js";
|
|
import { MenuEditorTree } from "./menu_editor_tree.js";
|
|
import { MonacoEditor } from "./monaco_editor.js";
|
|
import { MonacoDiffEditor } from "./monaco_diff_editor.js";
|
|
|
|
export const Hooks = {
|
|
AppShell,
|
|
SidebarInteractions,
|
|
SettingsSectionScroll,
|
|
TagsSectionScroll,
|
|
ChatSurface,
|
|
MenuEditorTree,
|
|
MonacoEditor,
|
|
MonacoDiffEditor
|
|
};
|