Skip to content

Commit

Permalink
Update for svelte 5
Browse files Browse the repository at this point in the history
  • Loading branch information
cyderize committed Oct 22, 2024
1 parent 5186e36 commit 9756239
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import './style.scss';
import './app.scss';
import App from './App.svelte';
import { mount } from 'svelte';

const app = new App({
const app = mount(App, {
target: document.getElementById('app'),
});

Expand Down

0 comments on commit 9756239

Please sign in to comment.