nsarrazin's picture
first commit
57e16da
raw
history blame
222 Bytes
<script lang="ts">
export let data: Promise<Blob>;
</script>
{#await data}
<p>... loading audio ...</p>
{:then audio}
<audio controls>
<source src={URL.createObjectURL(audio)} type="audio/mpeg" />
</audio>
{/await}