feat: initial commit of Vancouver Investment Fund web application

This commit is contained in:
sha
2025-06-20 13:53:19 +03:00
commit d1fa63d3c1
28 changed files with 3177 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
const app = mount(App, {
target: document.getElementById('app'),
})
export default app