Initial commit

This commit is contained in:
2021-11-04 00:04:25 +00:00
commit e78df802f9
64 changed files with 1508 additions and 0 deletions

11
e2e/src/app.po.ts Normal file
View File

@@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getPageTitle() {
return element(by.css('ion-title')).getText();
}
}