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