Skip to content

Commit

Permalink
Adiciona componentes placeholder para link
Browse files Browse the repository at this point in the history
Co-authored-by: Savio Cunha <[email protected]>
  • Loading branch information
eric-kingu and savioc2 committed Nov 14, 2023
1 parent 6e09d3d commit b696506
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 0 deletions.
Empty file.
1 change: 1 addition & 0 deletions src/app/pages/agora/agora.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>agora works!</p>
23 changes: 23 additions & 0 deletions src/app/pages/agora/agora.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { AgoraComponent } from './agora.component';

describe('AgoraComponent', () => {
let component: AgoraComponent;
let fixture: ComponentFixture<AgoraComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ AgoraComponent ]
})
.compileComponents();

fixture = TestBed.createComponent(AgoraComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/agora/agora.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-agora',
templateUrl: './agora.component.html',
styleUrls: ['./agora.component.css']
})
export class AgoraComponent {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/pages/programacao/programacao.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>programacao works!</p>
23 changes: 23 additions & 0 deletions src/app/pages/programacao/programacao.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ProgramacaoComponent } from './programacao.component';

describe('ProgramacaoComponent', () => {
let component: ProgramacaoComponent;
let fixture: ComponentFixture<ProgramacaoComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ProgramacaoComponent ]
})
.compileComponents();

fixture = TestBed.createComponent(ProgramacaoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/programacao/programacao.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-programacao',
templateUrl: './programacao.component.html',
styleUrls: ['./programacao.component.css']
})
export class ProgramacaoComponent {

}

0 comments on commit b696506

Please sign in to comment.