Is there a way to access a specific element in a wire map?
render() {
  hyper(this.shadowRoot)`
  <style>${css}</style>
  <container>
    ${this.referenceImages.map(image => wire(image)`
      <cell>
        <inner-cell class="${this.returnClass()}">
          
        </inner-cell>
      </cell>
      `)}
  </container>
  `;
}
How would I access the node in returnClass()?
Is there a better way to do what I want by using wire ids and weak references?