17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'of-pages-log',
|
|
templateUrl: './log-page.component.html',
|
|
})
|
|
export class LogPageComponent implements OnInit {
|
|
|
|
constructor(private route: ActivatedRoute, private router: Router) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|