mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 02:56:23 +08:00
7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import { AFFINE_DRAG_HANDLE_WIDGET } from './consts';
|
|
import { AffineDragHandleWidget } from './drag-handle';
|
|
|
|
export function effects() {
|
|
customElements.define(AFFINE_DRAG_HANDLE_WIDGET, AffineDragHandleWidget);
|
|
}
|