Hi, Is there a way to use ReScript inside svelte?
example with typescript:
<script lang="ts">
let count: number = 0;
</script>
<span>
{name}
</span>
it will be great if we can use ReScript as well:
<script lang="res">
let count: int = 0;
</script>
<span>
{name}
</span>