Skip to content
Snippets Groups Projects
Commit 8ee78297 authored by Hartung, Michael's avatar Hartung, Michael
Browse files

add fa-icons component

parent 1056c3f3
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FaIconsComponent } from './fa-icons.component';
describe('FaIconsComponent', () => {
let component: FaIconsComponent;
let fixture: ComponentFixture<FaIconsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ FaIconsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(FaIconsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-fa-icons',
templateUrl: './fa-icons.component.html',
styleUrls: ['./fa-icons.component.scss']
})
export class FaIconsComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
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