9d78e67381
- More consistent design for both reply-to status and source status preview - Fixed bugs too - Make sure index.css is always above
13 lines
224 B
JavaScript
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'));
|