12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
|
import { Component, OnInit } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "sm-layout",
|
||
|
templateUrl: "./layout.component.html",
|
||
|
})
|
||
|
export class LayoutComponent implements OnInit {
|
||
|
ngOnInit() {
|
||
|
document.body.classList.remove("layout_frontend");
|
||
|
}
|
||
|
}
|