Project

General

Profile

1
import { Component, OnInit } from '@angular/core';
2

    
3
@Component ({
4
  selector: 'app-content',
5
  templateUrl: '../pageContainer.html'
6
})
7

    
8
export class ContentComponent implements OnInit {
9

    
10
  constructor() {}
11

    
12
  ngOnInit() {}
13
}
(5-5/7)