add components, refactor sidebar section, add config

This commit is contained in:
FrancescoMolinaro
2023-12-22 10:42:38 +01:00
parent 7445591148
commit 604fb4f3d1
18 changed files with 296 additions and 27 deletions

View File

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