aboutsummaryrefslogtreecommitdiff
path: root/src/app/main-page/main-page.component.ts
blob: ad4a333066c55d4a72cd77eff5a2a5ff23fe9f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-main-page',
  templateUrl: './main-page.component.html'
})
export class MainPageComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}