Files
hertzbeat/web-app/src/app/layout/blank/blank.component.ts

11 lines
221 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
@Component({
selector: 'layout-blank',
template: `<router-outlet></router-outlet> `,
host: {
'[class.alain-blank]': 'true'
}
})
export class LayoutBlankComponent {}