phanpy/src/main.jsx
Lim Chee Aun 9d78e67381 New feature: pop-out compose window
- More consistent design for both reply-to status and source status preview
- Fixed bugs too
- Make sure index.css is always above
2022-12-13 20:42:09 +08:00

13 lines
224 B
JavaScript

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