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

#19: add onboarding page component

parent 5edcc8f2
No related branches found
No related tags found
No related merge requests found
<p>on-boarding-page works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OnBoardingPageComponent } from './on-boarding-page.component';
describe('OnBoardingPageComponent', () => {
let component: OnBoardingPageComponent;
let fixture: ComponentFixture<OnBoardingPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [OnBoardingPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(OnBoardingPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-on-boarding-page',
standalone: true,
imports: [CommonModule],
templateUrl: './on-boarding-page.component.html',
styleUrl: './on-boarding-page.component.scss'
})
export class OnBoardingPageComponent {
}
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