Basisimplementierung Songlist
This commit is contained in:
17
src/app/widget-modules/components/card/card.component.ts
Normal file
17
src/app/widget-modules/components/card/card.component.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import {Component, Input, OnInit} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-card',
|
||||
templateUrl: './card.component.html',
|
||||
styleUrls: ['./card.component.less']
|
||||
})
|
||||
export class CardComponent implements OnInit {
|
||||
@Input() padding = true;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user