123456789101112131415 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-attention',
- templateUrl: './attention.page.html',
- styleUrls: ['./attention.page.scss'],
- })
- export class AttentionPage implements OnInit {
- constructor() { }
- ngOnInit() {
- }
- }
|