website init

This commit is contained in:
Benjamin Ifland
2019-03-23 14:13:18 +01:00
parent 8842a192c7
commit 14a033a56c
54 changed files with 11443 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
import { Component, OnInit, Input } from '@angular/core';
import { SongListModel } from 'src/app/models/song-list.model';
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.less']
})
export class TableComponent implements OnInit {
@Input() public songs: SongListModel;
public columns = [
'Id',
'Name',
'Key',
'Type',
'Velocity',
];
constructor() { }
ngOnInit() {
console.log(this.songs);
}
}