render()

in client/src/components/footer.js [25:39]


  render() {
    const { VERSION, AVOCANO_PURCHASE_MODE } = getConfig();

    return html`
      <div class="footer">
        <div class="footerWrapper">
          Made with 💚 from the
          <a href="https://github.com/GoogleCloudPlatform/avocano/">Pit Crew</a>
        </div>
        <div class="version">
          Avocano v${VERSION} (purchase mode: ${AVOCANO_PURCHASE_MODE})
        </div>
      </div>
    `;
  }