https://github.com/angular/angular
Raw File
Tip revision: 98de2176400c86e6bbcb98754811af3f7c65280c authored by Jessica Janiuk on 28 April 2021, 18:58:23 UTC
release: cut the v12.0.0-rc.1 release (#41864)
Tip revision: 98de217
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