mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-header-logo',
|
|
imports: [],
|
|
templateUrl: './header-logo.component.html',
|
|
styleUrl: './header-logo.component.css',
|
|
})
|
|
export class HeaderLogoComponent {}
|