16 lines
343 B
TypeScript
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() {}
|
|
|
|
}
|