Files
stream-bypass/src/entrypoints/popup/main.ts
2025-11-08 16:30:42 +01:00

9 lines
156 B
TypeScript

import { mount } from 'svelte';
import App from './App.svelte';
const app = mount(App, {
target: document.getElementById('app')!
});
export default app;