import { Component, OnInit, Input } from '@angular/core';
import { RegPont } from '../shared/reg-pont';

@Component({
    selector: 'app-info-panel',
    templateUrl: './info-panel.component.html',
    styleUrls: ['./info-panel.component.less']
})
export class InfoPanelComponent implements OnInit {

    @Input() regPont: RegPont;

    constructor() { }

    ngOnInit() {
    }

}
