https://ko.reactjs.org/docs/hooks-effect.html
useEffect(() => {
const channelIo = document.getElementById('ch-plugin');
channelIo?.setAttribute('style', 'display: none');
return () => {
channelIo?.setAttribute('style', 'display: block;');
};
}, []);