SVELTE EDGE
Hello, props
props · ssr
Hello, props
Props with $props(). Good for static/SSR-style bundles.
<script>
let { name = "edge" } = $props();
</script>
<h1>Hello, {name}!</h1>
<style>
h1 { font: 800 2.25rem/1 ui-sans-serif, system-ui; color: #18181b; margin: 0; }
</style>