Last active
May 28, 2020 03:47
-
-
Save nipunaupeksha/f389c298c86095b24a14efec40c2f11c to your computer and use it in GitHub Desktop.
engtosin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Fonts } from './../shared/Fonts'; | |
import { Component, OnInit, Input } from '@angular/core'; | |
@Component({ | |
selector: 'app-fontdetail', | |
templateUrl: './fontdetail.component.html', | |
styleUrls: ['./fontdetail.component.scss'] | |
}) | |
export class FontdetailComponent implements OnInit { | |
@Input() | |
font: Fonts; | |
constructor() { } | |
ngOnInit(): void { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment