mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
16 lines
426 B
TypeScript
16 lines
426 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-backend-integration',
|
|
template: `
|
|
<div class="diagram-container">
|
|
<ngx-backend-integration-diagram></ngx-backend-integration-diagram>
|
|
</div>
|
|
<div class="description-container">
|
|
<router-outlet></router-outlet>
|
|
</div>
|
|
`,
|
|
styleUrls: ['./backend-integration.component.scss'],
|
|
})
|
|
export class BackendIntegrationComponent {
|
|
}
|