You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
312 B

import { Component, HostBinding } from '@angular/core';
import { UpgradableComponent } from 'theme/components/upgradable';
@Component({
template: '',
})
export class BlankLayoutCardComponent extends UpgradableComponent {
@HostBinding('class.blank-layout-card') protected readonly blankLayoutCard = true;
}