Skip to content

Instantly share code, notes, and snippets.

@nipunaupeksha
Last active May 28, 2020 03:47
Show Gist options
  • Save nipunaupeksha/f389c298c86095b24a14efec40c2f11c to your computer and use it in GitHub Desktop.
Save nipunaupeksha/f389c298c86095b24a14efec40c2f11c to your computer and use it in GitHub Desktop.
engtosin
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