initialisation de l'application

This commit is contained in:
AlineRinquin 2022-01-18 17:12:04 +01:00
parent b9f9f5fb3f
commit 6f9112ee91
118 changed files with 1221 additions and 492 deletions

View file

@ -0,0 +1 @@
<p>page-to-do-list works!</p>

View file

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageToDoListComponent } from './page-to-do-list.component';
describe('PageToDoListComponent', () => {
let component: PageToDoListComponent;
let fixture: ComponentFixture<PageToDoListComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageToDoListComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageToDoListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-page-to-do-list',
templateUrl: './page-to-do-list.component.html',
styleUrls: ['./page-to-do-list.component.scss']
})
export class PageToDoListComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}