diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index e5ef3a9a..67b3a190 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -83,6 +83,11 @@ const routes: Routes = [ loadChildren: () => import('./presentation/home/home.module').then((m) => m.HomeModule), }, + { + path: 'job', + loadChildren: () => + import('./presentation/job/job.module').then((m) => m.JobModule), + }, { path: 'helper', loadChildren: () => diff --git a/src/app/presentation/job/job.component.html b/src/app/presentation/job/job.component.html new file mode 100644 index 00000000..628fa9bf --- /dev/null +++ b/src/app/presentation/job/job.component.html @@ -0,0 +1 @@ +

job works!

diff --git a/src/app/presentation/job/job.component.scss b/src/app/presentation/job/job.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/presentation/job/job.component.spec.ts b/src/app/presentation/job/job.component.spec.ts new file mode 100644 index 00000000..45c7ad39 --- /dev/null +++ b/src/app/presentation/job/job.component.spec.ts @@ -0,0 +1,24 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { JobComponent } from './job.component'; + +describe('JobComponent', () => { + let component: JobComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [JobComponent], + }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(JobComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/presentation/job/job.component.ts b/src/app/presentation/job/job.component.ts new file mode 100644 index 00000000..96228a0d --- /dev/null +++ b/src/app/presentation/job/job.component.ts @@ -0,0 +1,12 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-job', + templateUrl: './job.component.html', + styleUrls: ['./job.component.scss'], +}) +export class JobComponent implements OnInit { + constructor() {} + + ngOnInit(): void {} +} diff --git a/src/app/presentation/job/job.module.ts b/src/app/presentation/job/job.module.ts new file mode 100644 index 00000000..11dddb43 --- /dev/null +++ b/src/app/presentation/job/job.module.ts @@ -0,0 +1,20 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { RouterModule } from '@angular/router'; +import { JobComponent } from './job.component'; +import { FormsModule } from '@angular/forms'; +import { LedgeRenderModule } from '@ledge-framework/render'; + +import { SharedModule } from '../../shared/shared.module'; + +@NgModule({ + declarations: [JobComponent], + imports: [ + CommonModule, + FormsModule, + SharedModule, + LedgeRenderModule, + RouterModule.forChild([{ path: '', component: JobComponent }]), + ], +}) +export class JobModule {}