mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
8 lines
245 B
TypeScript
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);
|
|
}
|