Files
eRx/src/app/users/dash/dash.page.ts
T
2022-10-04 12:08:40 -04:00

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() {
}
}