Files
AFFiNE-Mirror/blocksuite/affine/blocks/block-attachment/src/effects.ts
T
2025-03-08 12:00:34 +08:00

11 lines
347 B
TypeScript

import { AttachmentBlockComponent } from './attachment-block';
import { AttachmentEdgelessBlockComponent } from './attachment-edgeless-block';
export function effects() {
customElements.define(
'affine-edgeless-attachment',
AttachmentEdgelessBlockComponent
);
customElements.define('affine-attachment', AttachmentBlockComponent);
}