10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
import './app.css';
|
|
import './index.css';
|
|
import App from './App.svelte';
|
|
|
|
const app = new App({
|
|
target: document.getElementById('app')
|
|
});
|
|
|
|
export default app;
|