ExamplesMisc

Threlte Flow

You may have noticed that the hero flow on our our homepage is actually written in React 🙈. For all the non-believers, here it is written in Svelte with help from the amazing Threlte library.

<script lang="ts">
const data: string = "world";
</script>

<h1>Hello {data}</h1>

<style>
h1 {
  font-size: 1.5rem;
}
</style>
Read-only
⚠️
To surpress unknown prop warnings in the browser console, please refer to the guide.