snort/packages/app/src/Element/TwitchEmbed.tsx

9 lines
326 B
TypeScript

const TwitchEmbed = ({ link }: { link: string }) => {
const channel = link.split("/").slice(-1);
const args = `?channel=${channel}&parent=${window.location.hostname}&muted=true`;
return <iframe src={`https://player.twitch.tv/${args}`} className="w-max" allowFullScreen={true}></iframe>;
};
export default TwitchEmbed;