blob: 0cb0d0f59cdd79dbce2b163b2ed714cfb8d66e95 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Component } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent {
}
|