mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-04 21:00:16 +01:00
14 lines
243 B
TypeScript
14 lines
243 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ngx-editors',
|
||
|
|
template: `
|
||
|
|
<router-outlet></router-outlet>
|
||
|
|
`,
|
||
|
|
})
|
||
|
|
export class NgxEditorsComponent implements OnInit {
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() { }
|
||
|
|
}
|