calendar.page.ts 264 B

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