Project

General

Profile

1 50025 myrto.kouk
import {Component, OnInit} from "@angular/core";
2
3
@Component ({
4
  selector: 'app-sources-update',
5
  templateUrl: 'sources-update.component.html'
6
})
7
8
export class SourcesUpdateComponent implements OnInit {
9 50186 myrto.kouk
  parent_id: string;
10 50170 myrto.kouk
11 50025 myrto.kouk
  constructor() {}
12
13 50170 myrto.kouk
  ngOnInit() {
14 50186 myrto.kouk
    this.parent_id = 'sourcesUpdate';
15 50170 myrto.kouk
  }
16 50025 myrto.kouk
}