attention.page.ts 268 B

123456789101112131415
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-attention',
  4. templateUrl: './attention.page.html',
  5. styleUrls: ['./attention.page.scss'],
  6. })
  7. export class AttentionPage implements OnInit {
  8. constructor() { }
  9. ngOnInit() {
  10. }
  11. }