app.component.ts 247 B

12345678910111213141516171819202122
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-root',
  4. templateUrl: './app.component.html',
  5. styleUrls: ['./app.component.css']
  6. })
  7. export class AppComponent implements OnInit {
  8. ngOnInit() {
  9. }
  10. }