14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
/*
|
|
* Copyright (C) 2026 Mateusz Gruszczyński @linuxiarz.pl
|
|
* Source-Available Code / Dual-Licensed.
|
|
*
|
|
* Free for non-commercial and evaluation use under terms of BSL/GPLv3.
|
|
* Commercial or production use requires a valid paid license.
|
|
* See LICENSE file in repository root for details.
|
|
*/
|
|
|
|
import { createPadAdapter } from "@rustpad/note-api";
|
|
import { startNoteEditor } from "@rustpad/note-editor";
|
|
|
|
startNoteEditor(createPadAdapter());
|