PlanA/src/app/explore-container/explore-container.component.ts
2020-05-22 21:10:46 +02:00

16 lines
343 B
TypeScript

import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-explore-container',
templateUrl: './explore-container.component.html',
styleUrls: ['./explore-container.component.scss'],
})
export class ExploreContainerComponent implements OnInit {
@Input() name: string;
constructor() { }
ngOnInit() {}
}