import { LitElement, html, css } from 'lit-element'; import { overlays } from 'overlays/instance.js'; export class PageE extends LitElement { static get styles() { return css` :host { display: block; padding: 10px; border: 2px solid #ccc; } `; } render() { return html`

I am page A

Overlays Status:

Name: ${overlays.name}

Blocked: ${overlays.blockBody}

`; } } customElements.define('page-e', PageE);