simple page with news from all around the globe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
369B

  1. import { Component, OnInit } from '@angular/core';
  2. import { faNewspaper } from '@fortawesome/free-solid-svg-icons';
  3. @Component({
  4. selector: 'app-header',
  5. templateUrl: './header.component.html',
  6. styleUrls: ['./header.component.scss']
  7. })
  8. export class HeaderComponent implements OnInit {
  9. faNewspaper = faNewspaper;
  10. constructor() { }
  11. ngOnInit(): void {
  12. }
  13. }