2
0
mirror of https://github.com/iconify/iconify.git synced 2025-02-09 07:18:28 +00:00
2024-05-04 17:05:22 +03:00

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;