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


@Component({
  selector: 'app-getting-started',
  templateUrl: './getting-started.component.html',
  styleUrls: ['./getting-started.component.scss']
})
export class GettingStarted implements OnInit, AfterViewInit {
  title = 'app works!';

  ngOnInit() {
  }


  ngAfterViewInit() {
  }
}
