Files
wallnote/src/main.tsx
2025-03-04 22:57:46 +08:00

17 lines
265 B
TypeScript

import { page, app } from './routes';
page.addPage('/', 'wallnote');
setTimeout(() => {
page.subscribe(
'wallnote',
() => {
app.call({
path: 'wallnote',
key: 'render',
});
},
{ runImmediately: false },
);
}, 1000);