import { connectStore, customElement, GemElement, html } from '@mantou/gem'; import { bridgeStore } from '../store'; import { getImage } from '../utils'; @connectStore(bridgeStore) @customElement('bridge-panel-preview') export class BridgePanelPreviewElement extends GemElement { render() { const [item] = [...bridgeStore.selection]; if (!item) return null; return html`
${item.filename}
`; } }