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