Geen omschrijving

explore-container.component.ts 343B

12345678910111213141516
  1. import { Component, OnInit, Input } from '@angular/core';
  2. @Component({
  3. selector: 'app-explore-container',
  4. templateUrl: './explore-container.component.html',
  5. styleUrls: ['./explore-container.component.scss'],
  6. })
  7. export class ExploreContainerComponent implements OnInit {
  8. @Input() name: string;
  9. constructor() { }
  10. ngOnInit() {}
  11. }