mempool/frontend/src/app/about/about.component.ts

16 lines
266 B
TypeScript
Raw Normal View History

2019-07-21 16:59:47 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
})
export class AboutComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}