multi-project/projects/app/_modules/layout/right-content/right-content.component.ts

12 lines
291 B
TypeScript

import { Component } from '@angular/core';
import { html } from '@environments/htmlenv';
@Component({
selector: 'right-content',
templateUrl: html.rightContent||'./right-content.component.html',
styleUrls: ['./right-content.component.scss']
})
export class RightContentComponent {
}