19 lines
441 B
TypeScript
19 lines
441 B
TypeScript
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 {
|
|
fromText: string='';
|
|
disableSearch: boolean = true;
|
|
keywords: string='';
|
|
|
|
}
|