Add a new Angular app with 4 components

This commit is contained in:
Sébastien André
2019-09-17 13:48:16 +02:00
parent d9a79ebe0f
commit e79ac82861
47 changed files with 13521 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<p>
new-jump works!
</p>

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NewJumpComponent } from './new-jump.component';
describe('NewJumpComponent', () => {
let component: NewJumpComponent;
let fixture: ComponentFixture<NewJumpComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NewJumpComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NewJumpComponent);
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-new-jump',
templateUrl: './new-jump.component.html',
styleUrls: ['./new-jump.component.css']
})
export class NewJumpComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}