<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import { Controller } from "@hotwired/stimulus"

export default class extends Controller {
  static values = {
    tab: String
  }

  connect() {
    this.dispatch('switch', { detail: { tab: this.tabValue }})
  }

  disconnect() {
    this.dispatch('switch', { detail: { tab: 'dashboard' }})
  }
};
</pre></body></html>