ng-implementation/eqlair/src/app/pages/home/home.ts

20 lines
441 B
TypeScript
Raw Normal View History

2025-10-01 17:29:17 +02:00
import {Component} from '@angular/core';
import {MainButton} from 'sae-lib/buttons/main-button/main-button';
import {FeedbackButton} from 'sae-lib/buttons/feedback-button/feedback-button';
@Component({
selector: 'app-home',
imports: [
MainButton,
FeedbackButton
],
templateUrl: './home.html',
styleUrl: './home.scss'
})
export class Home {
2025-10-07 15:29:16 +02:00
fromText: string='';
disableSearch: boolean = true;
keywords: string='';
2025-10-01 17:29:17 +02:00
}