https://github.com/angular/angular
Raw File
Tip revision: 1c156eb304443d95f86fd614fbe0e73297ef0c8b authored by atscott on 09 September 2020, 20:12:30 UTC
release: cut the v10.1.1 release
Tip revision: 1c156eb
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