website/src/app/about/about.component.ts

12 lines
217 B
TypeScript
Raw Normal View History

2018-07-15 14:54:09 -04:00
import {Component, OnInit} from '@angular/core';
2018-07-11 22:28:15 -04:00
@Component({
selector: 'app-about',
2018-07-15 14:54:09 -04:00
templateUrl: './about.component.html'
2018-07-11 22:28:15 -04:00
})
export class AboutComponent implements OnInit {
2018-07-15 14:54:09 -04:00
constructor() {}
2018-07-11 22:28:15 -04:00
2018-07-15 14:54:09 -04:00
ngOnInit() {}
2018-07-11 22:28:15 -04:00
}