playwright/tests/components/ct-svelte-vite/src/main.ts

9 lines
151 B
TypeScript
Raw Normal View History

2022-03-12 00:46:11 +01:00
import App from './App.svelte';
import './assets/index.css';
2022-03-12 00:46:11 +01:00
const app = new App({
2022-10-20 22:33:25 +02:00
target: document.getElementById('app')!
2022-03-12 00:46:11 +01:00
});
export default app;