mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
Further features should be validated using multiple notes. <img width="806" alt="image" src="https://github.com/user-attachments/assets/ad2bf934-bebe-479a-bec0-a0a28001b08d" />
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import { addSampleNotes } from './doc-generator.js';
|
|
import { doc, editor } from './editor.js';
|
|
|
|
function main() {
|
|
doc.load();
|
|
addSampleNotes(6);
|
|
}
|
|
|
|
main();
|
|
document.querySelector('#container')?.append(editor);
|