Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 316 Bytes

about.md

File metadata and controls

17 lines (15 loc) · 316 Bytes

testing

Create component

You can use the CLI. ng g c nameComponent

  @Component({
    selector: 'selector-name',
    templateUrl: 'name.component.html',
  })
  export class NameComponent implements OnInit {
    constructor() {}
    ngOnInit() {}
}