class RightSidebarContent extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `

About

Star Wars: Knights of the Old Republic is a space opera role-playing video game series that takes place in the Star Wars universe. The story takes place approximately 4,000 years before the rise of the Galactic Empire.

`; } } customElements.define('right-sidebar-component', RightSidebarContent);