16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-site',
|
||
|
templateUrl: './site.component.html',
|
||
|
styleUrls: ['./site.component.css']
|
||
|
})
|
||
|
export class SiteComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|