https://github.com/angular/angular
Raw File
Tip revision: e3b657e73ab31c492351849486d9a8d0ab4b74f3 authored by Dylan Hunn on 04 May 2022, 19:55:18 UTC
release: cut the v13.3.6 release (#45873)
Tip revision: e3b657e
app.component.ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'cli-hello-world';
}
back to top