composer / source /ui /src /lib /Playback.svelte
Ron Au
feat(api): Connect frontend + backend
72db8a4
raw
history blame
235 Bytes
<script lang="ts">
import { audioBlob } from './stores';
</script>
<audio src={$audioBlob} controls />
<style>
audio {
width: 100%;
margin: 1rem auto;
}
@media (min-width: 600px) {
audio {
max-width: 40rem;
}
}
</style>