https://github.com/angular/angular
Raw File
Tip revision: cc962f5b9f1e192b618225f29af81bb821012b01 authored by Emma Twersky on 10 April 2024, 02:10:07 UTC
fix(docs): formating on signals input guide
Tip revision: cc962f5
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