rdt-client/client/src/app/torrent-file/torrent-file.component.ts
2021-01-12 20:42:06 -07:00

16 lines
398 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { TorrentFile } from '../models/torrent.model';
@Component({
selector: '[app-torrent-file]',
templateUrl: './torrent-file.component.html',
styleUrls: ['./torrent-file.component.scss'],
})
export class TorrentFileComponent implements OnInit {
@Input()
public file: TorrentFile;
constructor() {}
ngOnInit(): void {}
}