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

17 lines
292 B
TypeScript

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