Project

General

Profile

1
import { Component, OnInit } from '@angular/core';
2

    
3
@Component({
4
  selector: 'app-left-panel',
5
  templateUrl: './left-panel.component.html',
6
  styleUrls: ['./left-panel.component.scss']
7
})
8
export class LeftPanelComponent implements OnInit {
9

    
10
  constructor() { }
11

    
12
  ngOnInit(): void {
13
  }
14
}
(4-4/4)