Skip to content
Snippets Groups Projects
Verified Commit 3a8dd2c9 authored by Jonas Leder's avatar Jonas Leder
Browse files

add content component

parent 59d350a4
Branches
No related tags found
No related merge requests found
<p>content works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ContentComponent } from './content.component';
describe('ContentComponent', () => {
let component: ContentComponent;
let fixture: ComponentFixture<ContentComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ContentComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(ContentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-content',
templateUrl: './content.component.html',
styleUrls: ['./content.component.scss']
})
export class ContentComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment