10 lines
230 B
JavaScript
10 lines
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();
|
||
|
})()
|