| 12345678910111213141516 |
- import { Component, OnInit, ViewEncapsulation } from '@angular/core';
-
- @Component({
- selector: 'home',
- templateUrl: './home.component.html',
- styleUrls: ['./home.component.scss'],
- encapsulation: ViewEncapsulation.Native
- })
- export class HomeComponent implements OnInit {
-
- constructor() { }
-
- ngOnInit() {
- }
-
- }
|