v0.0.1 (download not working)
This commit is contained in:
20
BetterIServ.Mobile/src/app/components/mail/mail.component.ts
Normal file
20
BetterIServ.Mobile/src/app/components/mail/mail.component.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import {Component, Input, OnInit} from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
import {MailContent} from "../../entities/mail";
|
||||
import {NgIf} from "@angular/common";
|
||||
|
||||
@Component({
|
||||
selector: 'mail',
|
||||
templateUrl: './mail.component.html',
|
||||
styleUrls: ['./mail.component.scss'],
|
||||
imports: [
|
||||
IonicModule,
|
||||
NgIf
|
||||
],
|
||||
standalone: true
|
||||
})
|
||||
export class MailComponent {
|
||||
|
||||
@Input('mail') message: MailContent;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user