migracion a svelte 5

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-10-31 19:24:56 -03:00
parent 76e53d6f28
commit e550952397
10 changed files with 28 additions and 22 deletions

View File

@@ -1,7 +1,8 @@
//import './app.css'
import App from './App.svelte'
import { mount } from "svelte";
const app = new App({
const app = mount(App, {
target: document.getElementById('app')!,
})