mirror of
https://github.com/simon987/dsynth.net.git
synced 2025-04-10 14:06:44 +00:00
16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
templateUrl: './about.component.html',
|
|
styleUrls: ['./about.component.css']
|
|
})
|
|
export class AboutComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|