Project

General

Profile

1
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
  parent_id: string;
10

    
11
  constructor() {}
12

    
13
  ngOnInit() {
14
    this.parent_id = 'sourcesUpdate';
15
  }
16
}
(4-4/7)