mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-21 16:25:11 +02:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import './app.css';
|
|
import App from './App.svelte';
|
|
|
|
const app = new App({
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-expect-error
|
|
target: document.getElementById('app')
|
|
});
|
|
|
|
export default app;
|