import { LitElement, html, css } from 'lit' import folderByPath from './folderByPath.graphql' /** * An example element. * * @fires count-changed - Indicates when the count changes * @slot - This element has a slot * @csspart button - The button */ export class BlockIndexElement extends LitElement { static get styles() { return css` :host { display: block; border: solid 1px gray; padding: 16px; max-width: 800px; } `; } static get properties() { return { /** * The name to say "Hello" to. * @type {string} */ name: {type: String}, /** * The number of times the button has been clicked. * @type {number} */ count: {type: Number}, }; } constructor() { super(); this.name = 'World'; this.count = 0; } render() { return html`