mirror of
https://github.com/iconify/iconify.git
synced 2025-02-09 07:18:28 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { mount } from 'svelte';
|
|
import App from './App.svelte';
|
|
|
|
const target = document.getElementById('app')!;
|
|
const app = mount(App, { target });
|
|
|
|
export default app;
|