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

@Component({
  selector: 'app-test-me',
  templateUrl: './test-me.component.html',
  styleUrls: ['./test-me.component.css']
})
export class TestMeComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}
