mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 11:06:25 +08:00
11 lines
347 B
TypeScript
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);
|
|
}
|