mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import '../../../style.css';
|
|
|
|
import { createEmptyDoc, EdgelessEditor } from '@blocksuite/presets';
|
|
|
|
const doc = createEmptyDoc().init();
|
|
const editor = new EdgelessEditor();
|
|
editor.doc = doc;
|
|
document.body.append(editor);
|