mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-15 05:58:52 +01:00
11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-editors',
|
|
template: `
|
|
<router-outlet></router-outlet>
|
|
`,
|
|
})
|
|
export class EditorsComponent {
|
|
|
|
}
|