You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
467 B
16 lines
467 B
const audio = document.querySelector("audio");
|
|
const playButton = document.querySelector(".play-stream");
|
|
const playButtonAnimation = document.getElementById("play-button-animation");
|
|
const artistBlock = document.querySelector(".now-playing_artist");
|
|
const titleBlock = document.querySelector(".now-playing_song");
|
|
const logoDot = document.querySelector(".logo_dot");
|
|
|
|
export {
|
|
audio,
|
|
playButton,
|
|
playButtonAnimation,
|
|
artistBlock,
|
|
titleBlock,
|
|
logoDot,
|
|
};
|