Added one button
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-12-04 02:40:33 +10:00
parent d702e01f16
commit ccef7fb86f
18 changed files with 303 additions and 43 deletions

View File

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