mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 15:30:05 +01:00
16 lines
266 B
TypeScript
16 lines
266 B
TypeScript
|
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() {
|
||
|
}
|
||
|
|
||
|
}
|