mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
20 lines
318 B
TypeScript
20 lines
318 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ds-home',
|
|
styleUrls: ['./home.component.css'],
|
|
templateUrl: './home.component.html'
|
|
})
|
|
export class HomeComponent implements OnInit {
|
|
constructor() {
|
|
this.universalInit();
|
|
}
|
|
|
|
universalInit() {
|
|
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
}
|