import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-dash', templateUrl: './dash.page.html', styleUrls: ['./dash.page.scss'], }) export class DashPage implements OnInit { constructor() { } tileCardData:any = { title:'My New Tit', subt:'subtitle n', desc: 'I am sending description' } ngOnInit() { } }