18 lines
335 B
TypeScript
18 lines
335 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-merms-selectedpatient',
|
|
templateUrl: './merms-selectedpatient.page.html',
|
|
styleUrls: ['./merms-selectedpatient.page.scss'],
|
|
})
|
|
export class MermsSelectedpatientPage implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
goBack(){
|
|
|
|
}
|
|
}
|