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