web-humas-fe/components/ui/social-media/youtube.tsx

27 lines
636 B
TypeScript
Raw Normal View History

2024-12-22 17:45:31 +00:00
import { useEffect } from "react";
2024-02-20 08:42:07 +00:00
const YoutubeWidget = () => {
2024-12-22 17:45:31 +00:00
useEffect(() => {
if (typeof window !== "undefined") {
const script = document.createElement("script");
script.src = "https://embedsocial.com/cdn/ht.js";
script.async = true;
document.head.appendChild(script);
return () => {
document.head.removeChild(script);
};
}
}, []);
return (
<div
className="embedsocial-hashtag rounded-md"
2025-01-14 15:30:13 +00:00
// data-ref="7ad1e18598045d000abbf6de3479b1bbd5502583"
data-ref="7501cb8270327e936909c6ed57298ead0c5c07d0"
2024-12-22 17:45:31 +00:00
></div>
);
2024-02-20 08:42:07 +00:00
};
export default YoutubeWidget;