Add home's data to local storage

This commit is contained in:
Peter Maquiran
2021-07-20 19:18:16 +01:00
parent f7f71ea3ef
commit 036487ef3d
6 changed files with 125 additions and 1 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ToDayEventStorageService } from './to-day-event-storage.service';
describe('ToDayEventStorageService', () => {
let service: ToDayEventStorageService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ToDayEventStorageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});