first commit

This commit is contained in:
Your Name
2020-03-14 15:45:39 -04:00
commit eba6c2cdda
58 changed files with 14904 additions and 0 deletions
@@ -0,0 +1,15 @@
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() {}
}