/**
 * Made by mkcomponent.sh
*/

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


@Component({
    moduleId: module.id+ '',
    selector: 'block-default',
    templateUrl: './tpl.default.pug',
    styleUrls: ['sty.default.scss']
})

export class BlockDefaultComponent {

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

    constructor( ) { }

    // Lifecycle hooks ----

    // Functions ----

}
