export const selectSong = (songId: string) =>
  produce((draft: Draft<MusicSelectionState>) => {
    draft.selectedSongId = songId
  })