src/app/misc/panda-party/panda-party.component.ts
selector | app-panda-party |
styleUrls | panda-party.component.scss |
templateUrl | panda-party.component.html |
altText
|
Type: |
link
|
Type:
Default value: |
src
|
Type: |
subtitle
|
Type: |
title
|
Type: |
constructor()
|
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-panda-party',
templateUrl: './panda-party.component.html',
styleUrls: ['./panda-party.component.scss']
})
export class PandaPartyComponent {
@Input() title: string = ""
@Input() src: string = ""
@Input() altText: string = ""
@Input() link: string = "/home"
@Input() subtitle: string = ""
constructor() { }
}