Retrospring/app/javascript/retrospring/controllers/tooltip_controller.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
186 B
TypeScript
Raw Normal View History

2024-03-10 07:28:24 -07:00
import { Controller } from '@hotwired/stimulus';
import { Tooltip } from 'bootstrap';
export default class extends Controller {
connect(): void {
new Tooltip(this.element);
}
}