phanpy/src/main.jsx
Lim Chee Aun 151f0875ad Upgrade relative-time-elements
They've renamed the package name
2023-01-01 18:14:35 +08:00

13 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'));