class CustomBotControls extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
Bot Activity Logs
Bot is currently inactive. Start the bot to see activity logs.
`;
}
}
customElements.define('custom-bot-controls', CustomBotControls);