material-editor/src/main.ts

10 lines
201 B
TypeScript
Raw Normal View History

2025-04-14 16:37:17 +08:00
import './assets/main.css'
2025-05-27 16:54:25 +08:00
import { Mount } from './lib';
2025-04-14 16:37:17 +08:00
2025-05-30 11:30:03 +08:00
const app = document.createElement('div');
app.style.width = '100%';
app.style.height = '100vh';
document.body.appendChild(app);
Mount(app);
2025-04-10 16:37:20 +08:00