mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import { GfxViewportElement } from './gfx/viewport-element.js';
|
|
import { EditorHost } from './view/index.js';
|
|
|
|
export function effects() {
|
|
customElements.define('editor-host', EditorHost);
|
|
customElements.define('gfx-viewport', GfxViewportElement);
|
|
}
|