Angular job portal app
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

celebration.component.ts 296 B

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