fragment not needed

This commit is contained in:
Ivan
2023-01-21 10:47:50 -06:00
parent a2523f14ae
commit ea61b01f37

View File

@ -1,7 +1,6 @@
const SoundCloudEmbed = ({link}: {link: string}) => { const SoundCloudEmbed = ({link}: {link: string}) => {
return( return(
<>
<iframe <iframe
width="100%" width="100%"
height="166" height="166"
@ -9,7 +8,6 @@ const SoundCloudEmbed = ({link}: {link: string}) => {
allow="autoplay" allow="autoplay"
src={`https://w.soundcloud.com/player/?url=${link}`}> src={`https://w.soundcloud.com/player/?url=${link}`}>
</iframe> </iframe>
</>
) )
} }