UNPKG

@zsoltszabo/reg-pontok-terkep

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.1.1.

19 lines (13 loc) 400 B
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() { } }