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