mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 17:30:14 +01:00
forms basic components
This commit is contained in:
parent
b674d83552
commit
fcd27874d2
12 changed files with 248 additions and 0 deletions
19
src/app/pages/forms/components/layouts/layouts.component.ts
Normal file
19
src/app/pages/forms/components/layouts/layouts.component.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue