This commit is contained in:
HF 2023-12-27 15:53:52 +01:00
parent 09c4b4c284
commit a20fa7a8e6
2 changed files with 6 additions and 4 deletions

View File

@ -61,12 +61,14 @@ const ChristmasButton = () => {
}}
style={style}
>
{(playing) ? <embed
{(playing) ? (
<embed
style={{ margin: 10 }}
width="320"
height="180"
src={url}
/> : <GiPineTree />}
/>
) : <GiPineTree />}
</div>
);
};