Implements task saving and retrieving.

This commit is contained in:
florian
2021-10-20 13:37:45 +02:00
parent c1a7ccb535
commit 89b50142c7
18 changed files with 229 additions and 504 deletions

View File

@@ -0,0 +1 @@
<p>add-task works!</p>

View File

View File

@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AddTaskComponent } from './add-task.component';
describe('AddTaskComponent', () => {
let component: AddTaskComponent;
let fixture: ComponentFixture<AddTaskComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ AddTaskComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(AddTaskComponent);
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-add-task',
templateUrl: './add-task.component.html',
styleUrls: ['./add-task.component.scss']
})
export class AddTaskComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}