mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-25 06:05:52 +02:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'site-links',
|
|
templateUrl: 'site-links.pug',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class SiteLinks {
|
|
@Input() links: string[] = [];
|
|
}
|