home.ts 327 B

12345678910111213
  1. import { Component } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { RouterModule } from '@angular/router';
  4. @Component({
  5. selector: 'app-home',
  6. imports: [CommonModule, RouterModule],
  7. templateUrl: './home.html',
  8. styleUrl: './home.scss'
  9. })
  10. export class HomeComponent {
  11. constructor() {}
  12. }