import { Component, OnInit } from '@angular/core';
import { dataList } from './dataList.const';
@Component({ selector: 'app-home', templateUrl: './home.component.html', styleUrls: ['./home.component.css'] }) export class HomeComponent implements OnInit {
list = dataList;
constructor() { } ngOnInit() { } }