Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

app.module.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    app.component.ts 230 B
    import { Component } from '@angular/core';
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.css']
    })
    export class AppComponent {
      title = 'Hola Mundo'; // linea añadida
    }