mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-05 09:08:50 +01:00
12 lines
184 B
TypeScript
12 lines
184 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ngx-form-elements',
|
||
|
|
template: `
|
||
|
|
<router-outlet></router-outlet>
|
||
|
|
`,
|
||
|
|
})
|
||
|
|
export class NgxFormsComponent {
|
||
|
|
|
||
|
|
}
|