Skip to content
Snippets Groups Projects
Commit d2b14ea5 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add share with team page component

parent f367ef4f
No related branches found
No related tags found
No related merge requests found
<p>share-with-team-page works!</p>
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();
});
});
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 {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment