blob: 7b65d920f115d3ef1e9953cfb7b91f907a5535ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { Component } from '@angular/core'
@Component({
selector: 'my-about',
templateUrl: './about.component.html',
styleUrls: [ './about.component.scss' ]
})
export class AboutComponent {
}
|