Files
snort/packages/app/src/Element/TwitchEmbed.tsx
2023-02-14 14:27:40 +01:00

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;