mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 12:06:35 +08:00
8 lines
301 B
TypeScript
8 lines
301 B
TypeScript
import { SurfaceBlockComponent } from './surface-block.js';
|
|
import { SurfaceBlockVoidComponent } from './surface-block-void.js';
|
|
|
|
export function effects() {
|
|
customElements.define('affine-surface-void', SurfaceBlockVoidComponent);
|
|
customElements.define('affine-surface', SurfaceBlockComponent);
|
|
}
|