2017-04-29 11:26:20 +03:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { ActivatedRoute, Router } from '@angular/router'
|
|
|
|
|
2017-04-29 11:38:09 +03:00
|
|
|
import { TaskService } from '../task.srv';
|
2017-04-29 11:26:20 +03:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
templateUrl: 'app/view/view.html'
|
|
|
|
})
|
|
|
|
export class ViewComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor(private route: ActivatedRoute,
|
|
|
|
private router: Router,
|
|
|
|
private taskService: TaskService) {}
|
|
|
|
|
|
|
|
back() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|