first commit

This commit is contained in:
Olu Amey
2022-07-10 12:28:53 -04:00
commit 4c2d6db024
316 changed files with 35053 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { AppPage } from './app.po';
describe('new App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should be blank', () => {
page.navigateTo();
expect(page.getParagraphText()).toContain('Start with Ionic UI Components');
});
});