mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-24 21:55:52 +02:00
* Revert "7f7efbb94bab8574e42d942ad82d414e007b2970" Code style changes should probably be part of a PR
11 lines
258 B
TypeScript
11 lines
258 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[] = [];
|
|
}
|