You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-ui/src/app/components/shared/sidebar/file-import/file-import.component.ts

17 lines
448 B
TypeScript

import {ChangeDetectionStrategy, Component, Input} from "@angular/core";
import {ImportTabState} from "../../../../models/state/ImportTabState";
@Component({
selector: "app-file-import",
templateUrl: "./file-import.component.html",
styleUrls: ["./file-import.component.scss"],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FileImportComponent {
@Input() state!: ImportTabState;
constructor() {
}
}