Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 9x 9x 9x 9x 9x 9x 9x 1x | import { Component } from '@angular/core'; import { JobFormComponent } from '@app/features/jobs/forms/job-form/job-form.component'; import { JobActivitiesFormComponent } from '@app/features/jobs/forms/job-actitivies-form/job-actitivities-form.component'; import { JobAttachmentsFormComponent } from '@app/features/jobs/forms/job-attachments-form/job-attachments-form.component'; import { BaseChildComponent } from '@core/component/base-child.component'; import { JobAttachmentsComponent } from '@features/jobs/job-attachments/job-attachments.component'; @Component({ selector: 'app-job-edition', imports: [JobFormComponent, JobActivitiesFormComponent, JobAttachmentsFormComponent, JobAttachmentsComponent], templateUrl: './job-edition.component.html', styleUrl: './job-edition.component.scss' }) export class JobEditionComponent extends BaseChildComponent { constructor() {super()} } |