17 lines
292 B
TypeScript
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 {
|
|
|
|
|
|
}
|
|
|
|
|
|
|