mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-08 20:57:08 +08:00
chore(editor): reorg packages (#10702)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { AddButton, AddButtonComponentName } from './add-button';
|
||||
import { SelectionLayer, SelectionLayerComponentName } from './selection-layer';
|
||||
import { TableBlockComponent, TableBlockComponentName } from './table-block';
|
||||
import { TableCell, TableCellComponentName } from './table-cell';
|
||||
|
||||
export function effects() {
|
||||
customElements.define(TableBlockComponentName, TableBlockComponent);
|
||||
customElements.define(TableCellComponentName, TableCell);
|
||||
customElements.define(AddButtonComponentName, AddButton);
|
||||
customElements.define(SelectionLayerComponentName, SelectionLayer);
|
||||
}
|
||||
Reference in New Issue
Block a user