phanpy/src/main.jsx
Lim Chee Aun 28281bb752 New component: Menu
It's time to do this menu thing the right way instead of hacky CSS
2023-01-24 20:56:43 +08:00

36 lines
737 B
JavaScript

import './index.css';
import '@szhsin/react-menu/dist/core.css';
import { render } from 'preact';
import { HashRouter } from 'react-router-dom';
import { App } from './app';
if (import.meta.env.DEV) {
import('preact/debug');
}
render(
<HashRouter>
<App />
</HashRouter>,
document.getElementById('app'),
);
// Clean up iconify localStorage
// TODO: Remove this after few weeks?
setTimeout(() => {
try {
Object.keys(localStorage).forEach((key) => {
if (key.startsWith('iconify')) {
localStorage.removeItem(key);
}
});
Object.keys(sessionStorage).forEach((key) => {
if (key.startsWith('iconify')) {
sessionStorage.removeItem(key);
}
});
} catch (e) {}
}, 5000);