phanpy/src/main.jsx

13 lines
224 B
React
Raw Normal View History

2022-12-12 15:41:31 +00:00
import './index.css';
2022-12-10 09:14:48 +00:00
import '@github/time-elements';
2022-12-12 15:41:31 +00:00
import { render } from 'preact';
2022-12-10 09:14:48 +00:00
2022-12-12 15:41:31 +00:00
import { App } from './app';
if (import.meta.env.DEV) {
import('preact/debug');
}
2022-12-10 09:14:48 +00:00
render(<App />, document.getElementById('app'));