created basic webApplication

This commit is contained in:
2022-10-20 01:46:30 +10:00
parent af6a09c582
commit ed15ca57f6
32 changed files with 1286 additions and 490 deletions

View File

@@ -2,9 +2,16 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
template: `<div>
<h1>Welcome, traveler.</h1>
<nav>
<a routerLink = "">Главная </a>
<a routerLink = "about">О нас </a>
<a routerLink = "boards">Борда </a>
</nav>
<router-outlet></router-outlet>
</div>`
})
export class AppComponent {
title = 'Nedvach';
title = 'Nedvach Angular';
}