composer / source /ui /src /lib /Playback.svelte
Ron Au
feat(ui): Add frontend
ca5bd83
raw
history blame
238 Bytes
<script lang="ts">
import { playing } from '$lib/stores';
</script>
<audio controls src="download.wav" />
<style>
audio {
width: 100%;
margin: 1rem auto;
}
@media (min-width: 600px) {
audio {
max-width: 40rem;
}
}
</style>