import { Component, OnInit } from '@angular/core';
import {Dash} from '../../../classes/dash';
import {Block} from '../../../classes/blocks/block';

@Component({
  selector: 'app-dash-preview',
  templateUrl: './dash-preview.component.html',
  styleUrls: ['./dash-preview.component.less']
})
export class DashPreviewComponent implements OnInit {

  public dash: Dash = new Dash();
  public block: Block = new Block();

  public rows: any[];
  public columns: any[];

  constructor() {
    this.rows = new Array(this.dash.rowCount);
    this.columns = new Array(this.dash.columnCount);
  }

  ngOnInit() {
  }

}
