2017-08-01 23:09:21 +02:00
|
|
|
// vim: set tw=80 ts=2 sw=2 sts=2 :
|
|
|
|
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'accountant',
|
|
|
|
template: `
|
|
|
|
<!-- Navbar -->
|
2017-08-13 15:13:26 +02:00
|
|
|
<nav class="navbar fixed-top navbar-dark bg-dark">
|
2017-08-01 23:09:21 +02:00
|
|
|
<a class="navbar-brand" routerLink="/accounts"> Accountant</a>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
export class AppComponent { }
|