Project

General

Profile

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

    
3
@Component({
4
  selector: 'my-home',
5
  templateUrl: './home.component.html',
6
  styleUrls: ['./home.component.scss']
7
})
8
export class HomeComponent implements OnInit {
9

    
10
  constructor() {
11
    // Do stuff
12
  }
13

    
14
  ngOnInit() {
15
    console.log('Hello Home');
16
  }
17

    
18
}
(5-5/5)