added components file

This commit is contained in:
vraj545
2026-03-03 18:21:39 -05:00
parent 12d55c850a
commit c5e8acecf7
5 changed files with 38 additions and 0 deletions
@@ -0,0 +1 @@
<p>example works!</p>
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Example } from './example';
describe('Example', () => {
let component: Example;
let fixture: ComponentFixture<Example>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Example]
})
.compileComponents();
fixture = TestBed.createComponent(Example);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-example',
imports: [],
templateUrl: './example.html',
styleUrl: './example.scss',
})
export class Example {
}