[CST-4878] Created component

This commit is contained in:
Rezart Vata
2021-12-09 18:22:35 +01:00
parent 7218c450e6
commit 31fd89a9fc
5 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
import { Component, OnInit } from '@angular/core';
import { renderSectionFor } from 'src/app/submission/sections/sections-decorator';
import { SectionsType } from 'src/app/submission/sections/sections-type';
@Component({
selector: 'ds-section-accesses',
templateUrl: './section-accesses.component.html',
styleUrls: ['./section-accesses.component.scss']
})
@renderSectionFor(SectionsType.Accesses)
export class SubmissionSectionAccessesComponent implements OnInit {
// tslint:disable-next-line:no-empty
constructor() { }
// tslint:disable-next-line:no-empty
ngOnInit(): void {
}
}