ymanager/frontend/src/app/app.component.ts @ 06b9ca68
1 |
import { Component, OnInit } from '@angular/core'; |
---|---|
2 |
|
3 |
@Component({ |
4 |
selector: 'app-root', |
5 |
templateUrl: './app.component.html', |
6 |
styleUrls: ['./app.component.sass'] |
7 |
})
|
8 |
export class AppComponent implements OnInit { |
9 |
|
10 |
menuItems = ['DASHBOARD', 'ZAMESTNANCI']; |
11 |
constructor() {} |
12 |
|
13 |
ngOnInit() { |
14 |
}
|
15 |
}
|