Website/app/frontend/controllers/hello_controller.ts
Snoweuph c0ad70851e
Some checks failed
Quality Check / QS Frontend (push) Failing after 14s
Quality Check / QS Mixed (push) Failing after 11s
Quality Check / QS Backend (push) Successful in 15s
NOTICKET: Switch to Symfony UX Svelte
2024-07-18 21:29:18 +02:00

9 lines
223 B
TypeScript

import {Controller} from '@hotwired/stimulus';
export default class extends Controller {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
connect(): void {
console.log('Hello World');
}
}