mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-31 13:52:14 +02:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
export default class extends Controller {
|
|
connect(): void {
|
|
(this.element as HTMLInputElement).focus();
|
|
}
|
|
}
|