useEffect(() => {
try {
// IMPORTANT: replace EXAMPLE values
window.theAnimeCommunityConfig = {
MAL_ID: 'EXAMPLE',
AniList_ID: 'EXAMPLE',
episodeChapterNumber: 'EXAMPLE',
mediaType: 'EXAMPLE'
};
const script = document.createElement("script");
script.src = \`https://theanimecommunity.com/embed.js\`;
script.id = "anime-community-script";
script.defer=true;
document.getElementById("anime-community-comment-section").appendChild(script);
} catch (e) {
console.log(e)
}
}, []);