Files
AFFiNE-Mirror/blocksuite/playground/apps/comment/effects.ts

8 lines
245 B
TypeScript

import { CommentInput } from './comment-input.js';
import { CommentPanel } from './comment-panel.js';
export function effects() {
customElements.define('comment-input', CommentInput);
customElements.define('comment-panel', CommentPanel);
}