From d2b14ea5d1aebe611e93badd42554ef7a6cef690 Mon Sep 17 00:00:00 2001 From: kaw67872 <kawtar.laariche@iais.fraunhofer.de> Date: Fri, 3 May 2024 20:30:31 +0200 Subject: [PATCH] #19: add share with team page component --- .../share-with-team-page.component.html | 1 + .../share-with-team-page.component.scss | 0 .../share-with-team-page.component.spec.ts | 23 +++++++++++++++++++ .../share-with-team-page.component.ts | 13 +++++++++++ 4 files changed, 37 insertions(+) create mode 100644 src/app/shared/components/share-with-team-page/share-with-team-page.component.html create mode 100644 src/app/shared/components/share-with-team-page/share-with-team-page.component.scss create mode 100644 src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts create mode 100644 src/app/shared/components/share-with-team-page/share-with-team-page.component.ts diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.html b/src/app/shared/components/share-with-team-page/share-with-team-page.component.html new file mode 100644 index 0000000..ef7ad77 --- /dev/null +++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.html @@ -0,0 +1 @@ +<p>share-with-team-page works!</p> diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.scss b/src/app/shared/components/share-with-team-page/share-with-team-page.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts b/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts new file mode 100644 index 0000000..b60efe5 --- /dev/null +++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ShareWithTeamPageComponent } from './share-with-team-page.component'; + +describe('ShareWithTeamPageComponent', () => { + let component: ShareWithTeamPageComponent; + let fixture: ComponentFixture<ShareWithTeamPageComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ShareWithTeamPageComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(ShareWithTeamPageComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts b/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts new file mode 100644 index 0000000..8a871d0 --- /dev/null +++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts @@ -0,0 +1,13 @@ +import { Component } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'gp-share-with-team-page', + standalone: true, + imports: [CommonModule], + templateUrl: './share-with-team-page.component.html', + styleUrl: './share-with-team-page.component.scss' +}) +export class ShareWithTeamPageComponent { + +} -- GitLab