mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
23 lines
380 B
TypeScript
23 lines
380 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-fullpage-layout',
|
|
template: `
|
|
<div fxLayout="column" fxFlexFill>
|
|
<div fxFlex>
|
|
<router-outlet class="hidden-router"></router-outlet>
|
|
</div>
|
|
</div>
|
|
`,
|
|
styles: []
|
|
})
|
|
export class FullpageLayoutComponent implements OnInit {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|