mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-24 01:26:27 +01:00
11 lines
192 B
JavaScript
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'));
|