21 lines
359 B
TypeScript
21 lines
359 B
TypeScript
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() {
|
|
}
|
|
|
|
}
|