removed not used stuff
This commit is contained in:
parent
b010d49752
commit
7d4cfe1794
4 changed files with 2 additions and 34 deletions
|
@ -1 +0,0 @@
|
|||
|
|
@ -3,12 +3,12 @@
|
|||
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
||||
<!-- logo goes here -->
|
||||
<div class="flex gap-4">
|
||||
<button (click)="onLogout()" class="btn-primary">
|
||||
<button class="btn-primary">
|
||||
Ausloggen
|
||||
</button>
|
||||
</div>
|
||||
<div>
|
||||
<button (click)="openUserInfo()" class="btn-primary">
|
||||
<button class="btn-primary">
|
||||
Benutzer
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HomepageComponent } from './homepage.component';
|
||||
|
||||
describe('HomepageComponent', () => {
|
||||
let component: HomepageComponent;
|
||||
let fixture: ComponentFixture<HomepageComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [HomepageComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(HomepageComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
|
@ -5,16 +5,8 @@ import {ChangeDetectionStrategy, Component} from '@angular/core';
|
|||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './homepage.component.html',
|
||||
styleUrl: './homepage.component.css',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
})
|
||||
export class HomepageComponent {
|
||||
|
||||
onLogout() {
|
||||
//TODO implement
|
||||
}
|
||||
|
||||
openUserInfo() {
|
||||
//TODO implement
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue