mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
|
import { Controller } from "@hotwired/stimulus";
|
||
|
|
||
|
// Connects to data-controller="intercom"
|
||
|
export default class extends Controller {
|
||
|
show() {
|
||
|
Intercom("show");
|
||
|
}
|
||
|
}
|