import { customElement, GemElement, html, property } from '@mantou/gem'; import { Item } from '../store'; import { getImage } from '../utils'; @customElement('bridge-thumbnail') export class BridgeThumbnailElement extends GemElement { @property data: Item; render() { const { filename } = this.data; return html`
${filename}
`; } }