Newer
Older
Website / src / app / toolbar / toolbar.component.ts
@lukas lukas on 23 Mar 2022 280 bytes add new angular layout
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-toolbar',
  templateUrl: './toolbar.component.html',
  styleUrls: ['./toolbar.component.scss']
})
export class ToolbarComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}