Add shows page and routes
This commit is contained in:
parent
5cf778e390
commit
77c22f70da
5 changed files with 47 additions and 1 deletions
0
src/pages/shows/shows.component.css
Normal file
0
src/pages/shows/shows.component.css
Normal file
1
src/pages/shows/shows.component.html
Normal file
1
src/pages/shows/shows.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>shows works!</p>
|
||||
23
src/pages/shows/shows.component.spec.ts
Normal file
23
src/pages/shows/shows.component.spec.ts
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ShowsComponent } from './shows.component';
|
||||
|
||||
describe('ShowsComponent', () => {
|
||||
let component: ShowsComponent;
|
||||
let fixture: ComponentFixture<ShowsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ShowsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ShowsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
11
src/pages/shows/shows.component.ts
Normal file
11
src/pages/shows/shows.component.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-shows',
|
||||
imports: [],
|
||||
templateUrl: './shows.component.html',
|
||||
styleUrl: './shows.component.css'
|
||||
})
|
||||
export class ShowsComponent {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue