Footer Component

class FooterComponent

footer.component.ts
import { Component, inject } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { LoggerService } from '@jet/services/logger/logger.service';
import { TranslocoModule } from '@jsverse/transloco';

@Component({
  imports: [MatButtonModule, MatIconModule, TranslocoModule],
  selector: 'jet-footer',
  styleUrl: './footer.component.scss',
  templateUrl: './footer.component.html',
})
export class FooterComponent {
  private readonly _loggerService = inject(LoggerService);

  public constructor() {
    // Buy to unlock
  }
}

Last updated

Was this helpful?