2
0
mirror of https://github.com/iconify/iconify.git synced 2025-02-13 09:08:42 +00:00

8 lines
170 B
TypeScript
Raw Normal View History

2024-05-04 17:05:22 +03:00
import { mount } from 'svelte';
import App from './App.svelte';
2024-05-04 17:05:22 +03:00
const target = document.getElementById('app')!;
const app = mount(App, { target });
export default app;