mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 01:10:13 +01:00
20 lines
365 B
TypeScript
20 lines
365 B
TypeScript
|
|
import {Component, ViewEncapsulation} from '@angular/core';
|
||
|
|
|
||
|
|
import {BaCard} from '../../../../theme/components';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'layouts',
|
||
|
|
encapsulation: ViewEncapsulation.None,
|
||
|
|
directives: [BaCard],
|
||
|
|
styles: [require('./layouts.scss')],
|
||
|
|
template: require('./layouts.html'),
|
||
|
|
})
|
||
|
|
export class Layouts {
|
||
|
|
|
||
|
|
constructor() {
|
||
|
|
}
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
}
|