Skip to content

Commit

Permalink
Add link to music
Browse files Browse the repository at this point in the history
  • Loading branch information
seshrs committed Dec 30, 2023
1 parent edcbbc5 commit 75816dc
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,14 +229,24 @@ function Topbar() {
faClass="pause"
onClick={toggleAutoScroll}
/>
<Button
id={AUTO_SCROLL_BTN_ID}
faClass="music"
onClick={() => {
window.open(
'https://youtu.be/MNMSAIG0dfQ?si=XY4mCjSpwFRswqaA',
'_blank',
);
}}
/>
</div>
);
}

function Button(props: { id?: string; faClass: string; onClick: () => void }) {
const { id, faClass, onClick } = props;
return (
<span id={id} class="primer-spec-hoverable ">
<span id={id} class="primer-spec-hoverable" style="margin-left: 30px;">
<button
class="btn-link primer-spec-hoverable no-print"
aria-label="Pause auto-scroll"
Expand Down

0 comments on commit 75816dc

Please sign in to comment.