issue-pane
Version:
Solid-compatible Panes: issue editor
20 lines (17 loc) • 452 B
JavaScript
// import { longChatPane } from "chat-pane";
import { DataBrowserContext, PaneRegistry } from "pane-registry";
import { LiveStore, solidLogicSingleton, store } from "solid-logic";
export const context = {
session: {
store: store,
paneRegistry: {
byName: (name) => {
return // longChatPane
}
},
logic : solidLogicSingleton
},
dom: document,
getOutliner: () => null,
};
export const fetcher = store.fetcher;