phanpy/src/main.jsx
2023-01-05 10:50:27 +08:00

11 lines
192 B
JavaScript

import './index.css';
import { render } from 'preact';
import { App } from './app';
if (import.meta.env.DEV) {
import('preact/debug');
}
render(<App />, document.getElementById('app'));