mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-16 21:28:24 +03:00
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
import './index.css';
|
|
|
|
import '@github/relative-time-element';
|
|
import { render } from 'preact';
|
|
|
|
import { App } from './app';
|
|
|
|
if (import.meta.env.DEV) {
|
|
import('preact/debug');
|
|
}
|
|
|
|
render(<App />, document.getElementById('app'));
|