explore-container.component.ts 299 B

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