better-think-editor/test.mjs
Christian Lawson-Perfect 899087ed49 first commit
This is the first commit.

With stuff on several lines.
2025-02-08 15:44:11 +00:00

10 lines
No EOL
230 B
JavaScript

import show_error from './show-error.mjs';
import init_app from './dist/load-think-editor.mjs';
(async () => {
const compilation_error = await show_error;
if(compilation_error) {
return;
}
init_app();
})()