commit
This commit is contained in:
1
src/app/pages/home/components/body/body.component.html
Normal file
1
src/app/pages/home/components/body/body.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>body works!</p>
|
||||
25
src/app/pages/home/components/body/body.component.spec.ts
Normal file
25
src/app/pages/home/components/body/body.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { BodyComponent } from './body.component';
|
||||
|
||||
describe('BodyComponent', () => {
|
||||
let component: BodyComponent;
|
||||
let fixture: ComponentFixture<BodyComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ BodyComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(BodyComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/pages/home/components/body/body.component.ts
Normal file
15
src/app/pages/home/components/body/body.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-body',
|
||||
templateUrl: './body.component.html',
|
||||
styleUrls: ['./body.component.scss']
|
||||
})
|
||||
export class BodyComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/pages/home/components/head/head.component.html
Normal file
1
src/app/pages/home/components/head/head.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>head works!</p>
|
||||
25
src/app/pages/home/components/head/head.component.spec.ts
Normal file
25
src/app/pages/home/components/head/head.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HeadComponent } from './head.component';
|
||||
|
||||
describe('HeadComponent', () => {
|
||||
let component: HeadComponent;
|
||||
let fixture: ComponentFixture<HeadComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ HeadComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(HeadComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/pages/home/components/head/head.component.ts
Normal file
15
src/app/pages/home/components/head/head.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-head',
|
||||
templateUrl: './head.component.html',
|
||||
styleUrls: ['./head.component.scss']
|
||||
})
|
||||
export class HeadComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user