Files
doneit-web/src/app/shared/btn-seguinte/btn-seguinte.page.ts
T

16 lines
279 B
TypeScript
Raw Normal View History

2020-12-22 15:53:30 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-btn-seguinte',
templateUrl: './btn-seguinte.page.html',
styleUrls: ['./btn-seguinte.page.scss'],
})
export class BtnSeguintePage implements OnInit {
constructor() { }
ngOnInit() {
}
}