Files
srdb/webui/static/js/main.js

7 lines
186 B
JavaScript
Raw Normal View History

2025-10-12 13:06:05 +08:00
import { render } from 'preact';
import { html } from 'htm/preact';
import { App } from '~/components/App.js';
2025-10-12 13:06:05 +08:00
// 渲染应用
render(html`<${App} />`, document.getElementById('app'));