feat(navigation): add navigation bar component and update app layout
This commit is contained in:
parent
2feff13e5a
commit
ba2e989d49
6 changed files with 39 additions and 337 deletions
|
@ -0,0 +1 @@
|
|||
<p>navigation-bar works!</p>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { NavigationBarComponent } from './navigation-bar.component';
|
||||
|
||||
describe('NavigationBarComponent', () => {
|
||||
let component: NavigationBarComponent;
|
||||
let fixture: ComponentFixture<NavigationBarComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [NavigationBarComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(NavigationBarComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
|
@ -0,0 +1,12 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-navigation-bar',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './navigation-bar.component.html',
|
||||
styleUrl: './navigation-bar.component.css'
|
||||
})
|
||||
export class NavigationBarComponent {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue