Files
srdb/webui/static/js/main.js
2025-10-13 01:36:49 +08:00

7 lines
186 B
JavaScript

import { render } from 'preact';
import { html } from 'htm/preact';
import { App } from './components/App.js';
// 渲染应用
render(html`<${App} />`, document.getElementById('app'));