Forked commit

This commit is contained in:
Julian Tomczyk 2022-01-10 10:35:26 +01:00
commit a2da0b8600
61 changed files with 29068 additions and 0 deletions

View file

@ -0,0 +1 @@
<p>page-details works!</p>

View file

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageDetailsComponent } from './page-details.component';
describe('PageDetailsComponent', () => {
let component: PageDetailsComponent;
let fixture: ComponentFixture<PageDetailsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageDetailsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageDetailsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-page-details',
templateUrl: './page-details.component.html',
styleUrls: ['./page-details.component.scss']
})
export class PageDetailsComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}