ymanager/webapp/src/app/app.component.ts @ c335ea37
1 |
import {Component, OnInit} from '@angular/core'; |
---|---|
2 |
import { registerLocaleData } from '@angular/common'; |
3 |
import localeCs from '@angular/common/locales/cs'; |
4 |
|
5 |
@Component({ |
6 |
selector: 'app-root', |
7 |
templateUrl: './app.component.html', |
8 |
styleUrls: ['./app.component.sass'] |
9 |
})
|
10 |
export class AppComponent implements OnInit { |
11 |
|
12 |
constructor() { |
13 |
registerLocaleData(localeCs); |
14 |
}
|
15 |
|
16 |
ngOnInit() {} |
17 |
|
18 |
}
|