Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryB432 committed Sep 17, 2024
1 parent 2ee779a commit b1757aa
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/lib/components/PlayButton.svelte
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
<script lang="ts">
// export let playing = false;
let { playing, ontoggle }: { playing: boolean; ontoggle: () => void } =
$props();
import { createEventDispatcher } from "svelte";
// const dispatch = createEventDispatcher<{ toggle: { playing: boolean } }>();
function togglePlaying() {
playing = !playing;
ontoggle();
// dispatch("toggle", {
// playing,
// });
}
const svgPaths = {
Expand Down

0 comments on commit b1757aa

Please sign in to comment.