133. Generating component (#17 Section 19: HTML Template)

This commit is contained in:
Art
2021-09-17 16:25:13 +03:00
parent 1b62198edb
commit 19535a9749
13 changed files with 130 additions and 1 deletions

View File

@ -0,0 +1,15 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.css']
})
export class RegisterComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}