import { Component, OnInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: '.m-wrapper', templateUrl: './blank.component.html', encapsulation: ViewEncapsulation.None }) export class BlankComponent implements OnInit { constructor() {} ngOnInit() {} }