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/app-common/middle-centered/middle-centered.component.ts

14 lines
346 B
TypeScript

import {ChangeDetectionStrategy, Component} from "@angular/core";
@Component({
selector: "app-middle-centered",
templateUrl: "./middle-centered.component.html",
styleUrls: ["./middle-centered.component.scss"],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MiddleCenteredComponent {
constructor() {
}
}