mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-bootstrap',
|
|
template: `
|
|
<router-outlet></router-outlet>
|
|
`,
|
|
})
|
|
export class BootstrapComponent {
|
|
}
|