chore: init project

This commit is contained in:
2026-04-03 21:47:27 +03:00
commit 6edf0d07d3
45 changed files with 17947 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<script>
import { greet } from './greet';
let { host = 'SvelteKit', guest = 'Vitest' } = $props();
</script>
<h1>{greet(host)}</h1>
<p>{greet(guest)}</p>