12345678910111213 |
- import { Component } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { RouterModule } from '@angular/router';
- @Component({
- selector: 'app-home',
- imports: [CommonModule, RouterModule],
- templateUrl: './home.html',
- styleUrl: './home.scss'
- })
- export class HomeComponent {
- constructor() {}
- }
|