Files
AFFiNE-Mirror/blocksuite/framework/inline/src/effects.ts
2024-12-20 15:38:06 +08:00

8 lines
227 B
TypeScript

import { VElement, VLine, VText } from './components/index.js';
export function effects() {
customElements.define('v-element', VElement);
customElements.define('v-line', VLine);
customElements.define('v-text', VText);
}