5400294d45
- ng update @angular/core@19 @angular/cli@19 @angular/material@19 @angular-eslint/schematics@19 - Migration: remove standalone:true (now default in v19) from 60 components - Migration: zone.js 0.14 → 0.15 - Fix pre-existing build budget error: raise initial bundle limit to 5mb (app ships large static JSON assets)
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { DatePipe } from '@angular/common';
|
|
import { RouterLink } from '@angular/router';
|
|
|
|
import { Jump } from '@models';
|
|
|
|
@Component({
|
|
selector: 'app-jump-meta',
|
|
imports: [RouterLink, DatePipe],
|
|
styleUrl: './jump-meta.component.scss',
|
|
templateUrl: './jump-meta.component.html',
|
|
})
|
|
export class JumpMetaComponent {
|
|
@Input() jump!: Jump;
|
|
}
|