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

@Component({
	selector: 'static-block-promo-band',
	templateUrl: 'tpl.promo-band.pug',
	styleUrls: ['bld.promo-band.scss', 'sty.promo-band.scss']
})
export class PromoBandComponent implements OnInit {

	// Variables ----
	@Input('static-block') promoContent

	constructor() { }


	ngOnInit() {
		// Get promo from backend
		//this.promoContent = {'title': 'Gratis levering på alle ordrer', 'content': 'Levering på 2-3 hverdage · 30 dages returret'}
	}

	// Functions ----

}