import styles from '../styles/components/TwitchPopup.module.css' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faTwitch } from '@fortawesome/free-brands-svg-icons' import { faMicrophoneAlt } from '@fortawesome/free-solid-svg-icons' import { TwitchEmbed } from 'react-twitch-embed'; export default function TwitchPopup({ show }) { if(show == true) { return (

I'm currently live on Twitch!

) } else { return ( ) } }